wiki.techinc.nl/docs
Evan Prodromou d63d4248a6 Changed the calling protocol for function wfRunHooks() in Hooks.php.
Previously, this function used variable arguments to allow
different hooks to pass different parameters. However, var args
silently convert reference-calling to value-calling. So a call
that used to work like this:

    # old
    wfRunHooks('SomeEvent', $param1, &$param2, $param3);

...now works like this:

    # new
    wfRunHooks('SomeEvent', array($param1, &$param2, $param3));

Hook functions can now change pass-by-reference parameters correctly
(e.g. $param2 in the above example).

All calls to wfRunHooks() were changed and tested, and the change
was documented in docs/hooks.doc. This change was originally checked
in on REL1_4 branch as a bugfix, but per vibber reverted and checked
in to HEAD instead.
2005-03-13 15:29:43 +00:00
..
html We dont want to commit phpdoc generated documentation in cvs. It is better to generate it localy. 2004-11-12 21:08:27 +00:00
php-memcached Update memcached client to 1.0.10 2003-08-21 07:03:10 +00:00
deferred.doc Initial revision 2003-04-14 23:10:40 +00:00
design.doc Further explanation as to why to avoid CVS keywords. 2004-12-02 19:57:34 +00:00
export-0.1.xsd Put the schema at a shorter url 2005-01-25 14:23:33 +00:00
globals.doc Initial revision 2003-04-14 23:10:40 +00:00
hooks.doc Changed the calling protocol for function wfRunHooks() in Hooks.php. 2005-03-13 15:29:43 +00:00
language.doc Initial revision 2003-04-14 23:10:40 +00:00
linkcache.doc Initial revision 2003-04-14 23:10:40 +00:00
memcached.doc Two blocking features: IP range blocks, and expiry times configurable block-by-block. 2004-02-14 12:37:25 +00:00
schema.doc Remove the "random" table since it is no longer used; 2004-09-29 04:28:40 +00:00
skin.doc New system to generate $wgValidSkinNames by listing available dirs. Skins using PHPTal will not load and the software fallback to the standard skin. Added 2 samples for skin designers and updated doc 2004-09-02 03:24:01 +00:00
title.doc Initial revision 2003-04-14 23:10:40 +00:00
user.doc The horror... the horror... 2004-08-11 10:09:11 +00:00