Summary | Alternative solution of bug #3623 ? |
Queue | Ingo |
Queue Version | 1.1 |
Type | Bug |
State | Not A Bug |
Priority | 2. Medium |
Owners | |
Requester | michael.heimpold (at) s2000 (dot) tu-chemnitz (dot) de |
Created | 04/12/2006 (7058 days ago) |
Due | |
Updated | 04/12/2006 (7058 days ago) |
Assigned | |
Resolved | 04/12/2006 (7058 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Not A Bug
your solution is not the correct one.
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Alternative solution of bug #3623 ?
Queue ⇒ Ingo
referer: https://..../horde/ingo/filters.php" so I looked around in
the directory tree of horde and ingo for the "missing" stripe.js. I
found some in "horde/js/" so I simply made a:
cat <<"EOF" | patch horde/ingo/filters.php
--- filters.php.orig 2006-01-31 21:00:23.000000000 +0100
+++ filters.php 2006-04-12 07:52:15.859774196 +0200
@@ -109,7 +109,7 @@
$filter_list = $filters->getFilterList();
Horde::addScriptFile('tooltip.js', 'horde', true);
-Horde::addScriptFile('stripe.js', 'ingo', true);
+Horde::addScriptFile('stripe.js', 'horde', true);
$title = _("Filter Rules");
require INGO_TEMPLATES . '/common-header.inc';
require INGO_TEMPLATES . '/menu.inc';
EOF
After that I found, that there exists a stripe.js in CVS of ingo, but a
diff checkedout-stripe.js /var/www/horde/js/stripe.js
5c5
< * $Horde: ingo/js/stripe.js,v 1.1 2006/01/16 04:16:53 slusarz Exp $
---
< * See the enclosed file COPYING for license information (GPL). If
you did not
< * receive this file, see http://www.fsf.org/copyleft/gpl.html.
---
you did not
* receive this file, see http://www.fsf.org/copyleft/lgpl.html.
bug #3623show be to correct the "typo" instead of including a second copy of
the stripe.js ?