|
@@ -24,32 +24,35 @@
|
|
|
Mark J Crane <[email protected]>
|
|
|
*/
|
|
|
|
|
|
-if (strlen($_SESSION['switch']['scripts']['dir']) > 0) {
|
|
|
- if ($domains_processed == 1) {
|
|
|
-
|
|
|
- //update the notifications table
|
|
|
- $sql = "select count(*) as num_rows from v_notifications ";
|
|
|
- $prep_statement = $db->prepare($sql);
|
|
|
- if ($prep_statement) {
|
|
|
- $prep_statement->execute();
|
|
|
- $row = $prep_statement->fetch(PDO::FETCH_ASSOC);
|
|
|
- if ($row['num_rows'] == 0) {
|
|
|
- $sql = "insert into v_notifications ";
|
|
|
- $sql .= "(";
|
|
|
- $sql .= "notification_uuid, ";
|
|
|
- $sql .= "project_notifications ";
|
|
|
- $sql .= ")";
|
|
|
- $sql .= "values ";
|
|
|
- $sql .= "(";
|
|
|
- $sql .= "'".uuid()."', ";
|
|
|
- $sql .= "'false' ";
|
|
|
- $sql .= ")";
|
|
|
- $db->exec(check_sql($sql));
|
|
|
- unset($sql);
|
|
|
- }
|
|
|
- unset($prep_statement, $row);
|
|
|
+
|
|
|
+if ($domains_processed == 1) {
|
|
|
+
|
|
|
+ //update the notifications table
|
|
|
+ if (is_array($_SESSION['switch']['scripts'])) {
|
|
|
+ $sql = "select count(*) as num_rows from v_notifications ";
|
|
|
+ $prep_statement = $db->prepare($sql);
|
|
|
+ if ($prep_statement) {
|
|
|
+ $prep_statement->execute();
|
|
|
+ $row = $prep_statement->fetch(PDO::FETCH_ASSOC);
|
|
|
+ if ($row['num_rows'] == 0) {
|
|
|
+ $sql = "insert into v_notifications ";
|
|
|
+ $sql .= "(";
|
|
|
+ $sql .= "notification_uuid, ";
|
|
|
+ $sql .= "project_notifications ";
|
|
|
+ $sql .= ")";
|
|
|
+ $sql .= "values ";
|
|
|
+ $sql .= "(";
|
|
|
+ $sql .= "'".uuid()."', ";
|
|
|
+ $sql .= "'false' ";
|
|
|
+ $sql .= ")";
|
|
|
+ $db->exec(check_sql($sql));
|
|
|
+ unset($sql);
|
|
|
}
|
|
|
+ unset($prep_statement, $row);
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
|
|
|
-?>
|
|
|
+
|
|
|
+?>
|