1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Notice and Warning removals

This commit is contained in:
Cameron
2013-04-15 19:46:35 -07:00
parent 0f6c1704de
commit 792c5eb628
5 changed files with 29 additions and 7 deletions

View File

@@ -964,8 +964,16 @@ function update_706_to_800($type='')
require_once(e_HANDLER."db_verify_class.php");
$dbv = new db_verify;
$exclude = array_keys(e107::getPlugin()->updateRequired()); // search xxxxx_setup.php and check for 'upgrade_required()' == true.
if($plugUpgradeReq = e107::getPlugin()->updateRequired())
{
$exclude = array_keys($plugUpgradeReq); // search xxxxx_setup.php and check for 'upgrade_required()' == true.
}
else
{
$exclude = false;
}
$dbv->compareAll($exclude); // core & plugins, but not plugins calling for an update with xxxxx_setup.php
if(count($dbv->errors))