Fix the null used in users/app_defaults.php
This commit is contained in:
parent
d573aa8b0b
commit
4eb984f3d8
|
|
@ -27,7 +27,7 @@
|
|||
if ($domains_processed == 1) {
|
||||
//if the are no groups add the default groups
|
||||
$sql = "SELECT * FROM v_groups ";
|
||||
$sql .= "WHERE domain_uuid = 'null' ";
|
||||
$sql .= "WHERE domain_uuid = null ";
|
||||
$sub_result = $db->query($sql)->fetch();
|
||||
$prep_statement = $db->prepare(check_sql($sql));
|
||||
if ($prep_statement) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue