Beispiel #1
0
 private function processDbUpdates()
 {
     if (isset($_GET['db']) && $_GET['db'] == 'update') {
         include_once LIB_ROOT . '/db_updater.class.php';
         $db = new DbUpdater();
         $db->setDbUpdatesFile(DOC_ROOT . '/db_updates.php');
         $db->update();
     }
 }