1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 09:34:54 +02:00

Installation configuration fixes. RSS install now included default configuration correctly.

This commit is contained in:
Cameron
2016-02-25 18:43:49 -08:00
parent 12a2084cbb
commit a16ee111e9
10 changed files with 231 additions and 71 deletions

View File

@@ -2412,6 +2412,15 @@ class e107plugin
$setup_file = e_PLUGIN.$path.'/'.$path.'_setup.php';
// }
if(!is_readable($setup_file) && substr($path,-5) == "_menu")
{
$setup_file = e_PLUGIN.$path.'/'.str_replace("_menu","",$path).'_setup.php';
}
e107::getMessage()->addDebug("Checking for SetUp File: ".$setup_file);
if (is_readable($setup_file))
{
if(e_PAGE == 'e107_update.php' && E107_DBG_INCLUDES)