Update app_defaults.php

This commit is contained in:
FusionPBX
2017-01-10 01:14:49 -07:00
committed by GitHub
parent b4019239ba
commit 18047f2611
+25 -24
View File
@@ -24,32 +24,33 @@
Mark J Crane <markjcrane@fusionpbx.com> Mark J Crane <markjcrane@fusionpbx.com>
*/ */
if (strlen($_SESSION['switch']['scripts']['dir']) > 0) { if ($domains_processed == 1) {
if ($domains_processed == 1) {
//update the notifications table //update the notifications table
$sql = "select count(*) as num_rows from v_notifications "; if (is_array($_SESSION['switch']['scripts'])) {
$prep_statement = $db->prepare($sql); $sql = "select count(*) as num_rows from v_notifications ";
if ($prep_statement) { $prep_statement = $db->prepare($sql);
$prep_statement->execute(); if ($prep_statement) {
$row = $prep_statement->fetch(PDO::FETCH_ASSOC); $prep_statement->execute();
if ($row['num_rows'] == 0) { $row = $prep_statement->fetch(PDO::FETCH_ASSOC);
$sql = "insert into v_notifications "; if ($row['num_rows'] == 0) {
$sql .= "("; $sql = "insert into v_notifications ";
$sql .= "notification_uuid, "; $sql .= "(";
$sql .= "project_notifications "; $sql .= "notification_uuid, ";
$sql .= ")"; $sql .= "project_notifications ";
$sql .= "values "; $sql .= ")";
$sql .= "("; $sql .= "values ";
$sql .= "'".uuid()."', "; $sql .= "(";
$sql .= "'false' "; $sql .= "'".uuid()."', ";
$sql .= ")"; $sql .= "'false' ";
$db->exec(check_sql($sql)); $sql .= ")";
unset($sql); $db->exec(check_sql($sql));
} unset($sql);
unset($prep_statement, $row);
} }
unset($prep_statement, $row);
}
} }
} }
?> ?>