diff options
author | pmichaud <pmichaud@524c5546-5005-0410-9a3e-e25e191bd360> | 2006-09-29 21:00:19 +0000 |
---|---|---|
committer | pmichaud <pmichaud@524c5546-5005-0410-9a3e-e25e191bd360> | 2006-09-29 21:00:19 +0000 |
commit | 9cd811280e527d99a7f2d6d9fdd9deb22f40e98d (patch) | |
tree | f51403db9ff5819038d73c53bf3ad38cf9b63e6d /scripts/blocklist.php | |
parent | e9fff0fdf0fb5d9adbedc1ce89fd6891c7c963b4 (diff) | |
download | pmwiki.svn-9cd811280e527d99a7f2d6d9fdd9deb22f40e98d.tar.bz2 |
Fix bug with $EnableWhyBlocked.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@1663 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'scripts/blocklist.php')
-rw-r--r-- | scripts/blocklist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/blocklist.php b/scripts/blocklist.php index 06b727e5..dc7ea0d1 100644 --- a/scripts/blocklist.php +++ b/scripts/blocklist.php @@ -139,7 +139,7 @@ function Blocklist($pagename, $text) { ## we'll even tell the author why. :-) if (@$WhyBlockedFmt) { $MessagesFmt[] = $BlocklistMessageFmt; - if (IsEnabled($EnabledWhyBlocked, 0)) + if (IsEnabled($EnableWhyBlocked, 0)) foreach((array)$WhyBlockedFmt as $why) $MessagesFmt[] = "<pre class='blocklistmessage'>$why</pre>\n"; } |