From: <var...@us...> - 2013-04-02 09:05:06
|
Revision: 8737 http://sourceforge.net/p/phpwiki/code/8737 Author: vargenau Date: 2013-04-02 09:05:00 +0000 (Tue, 02 Apr 2013) Log Message: ----------- Use Wikicreole syntax for RedirectTo Modified Paths: -------------- trunk/lib/plugin/WikiBlog.php Modified: trunk/lib/plugin/WikiBlog.php =================================================================== --- trunk/lib/plugin/WikiBlog.php 2013-04-02 08:25:32 UTC (rev 8736) +++ trunk/lib/plugin/WikiBlog.php 2013-04-02 09:05:00 UTC (rev 8737) @@ -220,7 +220,7 @@ if (!$parent) $parent = HOME_PAGE; require_once 'lib/loadsave.php'; $pageinfo = array('pagename' => $redirected, - 'content' => '<?plugin RedirectTo page="' . $parent . '" ?>', + 'content' => '<<RedirectTo page="' . $parent . '">>', 'pagedata' => array(), 'versiondata' => array('author' => $blog_meta['creator'], 'is_minor_edit' => 1), ); @@ -231,7 +231,7 @@ if (!$parent) $parent = HOME_PAGE; require_once 'lib/loadsave.php'; $pageinfo = array('pagename' => $redirected, - 'content' => '<?plugin RedirectTo page="' . $parent . '" ?>', + 'content' => '<<RedirectTo page="' . $parent . '">>', 'pagedata' => array(), 'versiondata' => array('author' => $blog_meta['creator'], 'is_minor_edit' => 1), ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |