Revisión | 9d83ba0df6e7dcc328b9f4dc3443724b3a524b0e (tree) |
---|---|
Tiempo | 2005-02-05 15:47:10 |
Autor | henoheno <henoheno> |
Commiter | henoheno |
BugTrack/794: Correct r1.6. Disabling #plugins
@@ -1,6 +1,6 @@ | ||
1 | 1 | <?php |
2 | 2 | // PukiWiki - Yet another WikiWikiWeb clone. |
3 | -// $Id: plugin.php,v 1.6 2004/12/30 13:50:54 henoheno Exp $ | |
3 | +// $Id: plugin.php,v 1.7 2005/02/05 06:47:10 henoheno Exp $ | |
4 | 4 | // |
5 | 5 | // Plugin related functions |
6 | 6 |
@@ -112,6 +112,8 @@ function do_plugin_convert($name, $args = '') | ||
112 | 112 | return preg_replace('/(<form[^>]*>)/', '$1 ' . "\n" . |
113 | 113 | '<div><input type="hidden" name="encode_hint" value="' . |
114 | 114 | PKWK_ENCODING_HINT . '" /></div>', $retvar); |
115 | + } else { | |
116 | + return $retvar; | |
115 | 117 | } |
116 | 118 | } |
117 | 119 |