Enhance the extension class to include voicemail database management.

This commit is contained in:
Mark Crane
2013-04-12 23:30:48 +00:00
parent 7c6c6e9f71
commit 75368a2d65
3 changed files with 413 additions and 339 deletions

View File

@@ -61,7 +61,7 @@ require_once "includes/paging.php";
//get the number of rows in v_extensions
$sql = "select count(*) as num_rows from v_extensions ";
$sql .= "where domain_uuid = '$domain_uuid' ";
$sql .= "where domain_uuid = '".$domain_uuid."' ";
$prep_statement = $db->prepare(check_sql($sql));
if ($prep_statement) {
$prep_statement->execute();