diff options
author | Guy Brand <gb@isis.u-strasbg.fr> | 2007-03-23 08:53:09 +0100 |
---|---|---|
committer | Guy Brand <gb@isis.u-strasbg.fr> | 2007-03-23 08:53:09 +0100 |
commit | 32a4944711392a5a85b87b61a87fcb624cf9474d (patch) | |
tree | d0a75ce927f3d9ef8d8f7701b7b7d534f0a2603f /inc/plugin.php | |
parent | a307fd7ad74b8985f80754dc26c38963d4fe6f5f (diff) | |
download | rpg-32a4944711392a5a85b87b61a87fcb624cf9474d.tar.gz rpg-32a4944711392a5a85b87b61a87fcb624cf9474d.tar.bz2 |
Typo in plugin.php (FS#1094)
darcs-hash:20070323075309-19e2d-ec759de766c1ee42e0145e81bea3946aa9f35298.gz
Diffstat (limited to 'inc/plugin.php')
-rw-r--r-- | inc/plugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/plugin.php b/inc/plugin.php index b5b221fcd..d7dea4130 100644 --- a/inc/plugin.php +++ b/inc/plugin.php @@ -167,7 +167,7 @@ class DokuWiki_Plugin { * @return object helper plugin object */ function loadHelper($name, $msg){ - if (!plugin_isdiabled($name)) $obj =& plugin_load('helper',$name); + if (!plugin_isdisabled($name)) $obj =& plugin_load('helper',$name); else $obj = NULL; if (is_null($obj) && $msg) msg("Helper plugin $name is not available or invalid.",-1); return $obj; |