Subject: | parserhook php error |
With mediawiki 1.5.0 and PHP 4.3.7, I was getting this error message:
PHP Notice: Use of undefined constant parserhook - assumed
'parserhook' in
/home/httpd/dev.clotho.com/secure/wiki/extensions/Graph.php on line 23
I made the following change to make the warning go away:
From
$wgExtensionCredits[parserhook][] = array(
to
$wgExtensionCredits['parserhook'][] = array(
-- Chris