https://bugzilla.wikimedia.org/show_bug.cgi?id=21434


Roan Kattouw <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]




--- Comment #2 from Roan Kattouw <[email protected]>  2009-11-08 16:29:22 
UTC ---
(In reply to comment #0)
> Specifically, the lines 
> 
> #require_once(
> "$IP/extensions/UsabilityInitiative/SimpleSearch/SimpleSearch.php" );
> 
> require_once( "$IP/extensions/UsabilityInitiative/EditWarning/EditWarning.php"
> );
> 
> require_once( "$IP/extensions/UsabilityInitiative/EditToolbar/EditToolbar.php"
> );
> 
> require_once(
> "$IP/extensions/UsabilityInitiative/NavigableTOC/NavigableTOC.php" );
> 
> will all fail.
> 
> I'm not sure if this is part of a broader refactoring in the extension, and I
> just checked-out at a bad time, however, there is nothing in the README at all
> about this at all (If it is simply a documentation thing, then perhaps close
> this bug when the docs are fixed).
> 
You're right, the extension was recently refactored. To make it work again,
replace all require_once() lines you previously used with:

require_once("$IP/extensions/UsabilityInitiative/Vector/Vector.php"); //
CollapsibleTabs, SimpleSearch, EditWarning
require_once("$IP/extensions/UsabilityInitiative/WikiEditor/WikiEditor.php");
// EditToolbar, NTOC, some new stuff

The way modules are enabled and disabled have also changed. I'm not gonna
detail that here, but it will go into the updated README file.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to