From: <var...@us...> - 2015-02-25 15:07:08
|
Revision: 9561 http://sourceforge.net/p/phpwiki/code/9561 Author: vargenau Date: 2015-02-25 15:07:06 +0000 (Wed, 25 Feb 2015) Log Message: ----------- Add BlogArchives, BlogJournal, WikiBlog for Fusionforge Modified Paths: -------------- trunk/lib/IniConfig.php Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2015-02-25 15:06:23 UTC (rev 9560) +++ trunk/lib/IniConfig.php 2015-02-25 15:07:06 UTC (rev 9561) @@ -583,7 +583,7 @@ // All pages containing plugins of the same name as the filename $ActionPages = explode(':', 'AllPages:AllUsers:AppendText:AuthorHistory:' - . 'BackLinks:' + . 'BackLinks:BlogArchives:BlogJournal:' . 'CreatePage:' . 'FullTextSearch:FuzzyPages:' . 'LikePages:LinkDatabase:LinkSearch:ListRelations:' @@ -597,15 +597,13 @@ . 'TitleSearch:' . 'UpLoad:UserPreferences:' . 'UserRatings:' // UserRatings works only in wikilens derived themes - . 'WantedPages:WatchPage:WhoIsOnline:WikiAdminSelect'); + . 'WantedPages:WatchPage:WikiBlog:WhoIsOnline:WikiAdminSelect'); // The FUSIONFORGE theme omits them if (!(defined('FUSIONFORGE') && FUSIONFORGE)) { // Add some some action pages $ActionPages[] = 'DebugInfo'; $ActionPages[] = 'SpellCheck'; // SpellCheck does not work - $ActionPages[] = 'BlogArchives'; - $ActionPages[] = 'BlogJournal'; $ActionPages[] = 'EditMetaData'; $ActionPages[] = 'InterWikiSearch'; $ActionPages[] = 'LdapSearch'; @@ -613,7 +611,6 @@ $ActionPages[] = 'RecentComments'; $ActionPages[] = 'TranslateText'; $ActionPages[] = 'UriResolver'; - $ActionPages[] = 'WikiBlog'; } global $AllAllowedPlugins; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |