When saving an extension it would produce and error. To fix this adjust the SQL Where statement to change extension_enabled to enabled.
This commit is contained in:
parent
56448bbdbf
commit
d8ca993817
|
|
@ -4885,13 +4885,6 @@
|
||||||
<md5>a20aca300a3c9c1cdd724971dba4626d</md5>
|
<md5>a20aca300a3c9c1cdd724971dba4626d</md5>
|
||||||
<size>1913</size>
|
<size>1913</size>
|
||||||
</src>
|
</src>
|
||||||
<src>
|
|
||||||
<type>file</type>
|
|
||||||
<path>/secure/v_config_cli.php</path>
|
|
||||||
<last_mod>Tue, 29 Jun 2010 08:34:19 GMT</last_mod>
|
|
||||||
<md5>6e1e710fe517b4a624d0fad75313d1bb</md5>
|
|
||||||
<size>1109</size>
|
|
||||||
</src>
|
|
||||||
<src>
|
<src>
|
||||||
<type>file</type>
|
<type>file</type>
|
||||||
<path>/secure/v_mailto.php</path>
|
<path>/secure/v_mailto.php</path>
|
||||||
|
|
|
||||||
|
|
@ -3399,7 +3399,7 @@ if (!function_exists('sync_directory')) {
|
||||||
//get a list of extensions and the users assigned to them
|
//get a list of extensions and the users assigned to them
|
||||||
$sql = "select * from v_extensions ";
|
$sql = "select * from v_extensions ";
|
||||||
$sql .= "where domain_uuid = '$domain_uuid' ";
|
$sql .= "where domain_uuid = '$domain_uuid' ";
|
||||||
$sql .= "and extension_enabled = 'true'; ";
|
$sql .= "and enabled = 'true'; ";
|
||||||
$prep_statement = $db->prepare(check_sql($sql));
|
$prep_statement = $db->prepare(check_sql($sql));
|
||||||
$prep_statement->execute();
|
$prep_statement->execute();
|
||||||
$x = 0;
|
$x = 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue