Remove v_ from the links to the php files that were renamed.

This commit is contained in:
Mark Crane
2012-11-23 23:59:42 +00:00
parent a083d33600
commit 4a8d7814f2
3 changed files with 4 additions and 5 deletions

View File

@@ -32,7 +32,7 @@
$apps[$x]['menu'][0]['uuid'] = 'ff4ccd3d-e295-7875-04b4-54eb0c74adc5';
$apps[$x]['menu'][0]['parent_uuid'] = '0438b504-8613-7887-c420-c837ffb20cb1';
$apps[$x]['menu'][0]['category'] = 'internal';
$apps[$x]['menu'][0]['path'] = '/app/voicemail_status/v_voicemail.php';
$apps[$x]['menu'][0]['path'] = '/app/voicemail_status/voicemail.php';
$apps[$x]['menu'][0]['groups'][] = 'admin';
$apps[$x]['menu'][0]['groups'][] = 'superadmin';

View File

@@ -76,8 +76,7 @@ $order = $_GET["order"];
echo th_order_by('description', $text['label-description'], $order_by, $order);
echo "<tr>\n";
$sql = "";
$sql .= "select * from v_extensions ";
$sql = "select * from v_extensions ";
$sql .= "where domain_uuid = '$domain_uuid' ";
if (!(if_group("admin") || if_group("superadmin"))) {
if (count($_SESSION['user']['extension']) > 0) {
@@ -171,7 +170,7 @@ $order = $_GET["order"];
echo " <td valign='top' class='row_stylebg' width='30%'>".$row['description']."&nbsp;</td>\n";
echo " <td valign='top' align='right'>\n";
if (permission_exists('voicemail_status_delete')) {
echo " <a href='v_voicemail_prefs_delete.php?id=".$row['extension_uuid']."' alt='".$text['confirm-prefs-delete-alt']."' title='".$text['confirm-prefs-delete-title']."' onclick=\"return confirm('".$text['confirm-prefs-delete']."')\">$v_link_label_delete</a>\n";
echo " <a href='voicemail_prefs_delete.php?id=".$row['extension_uuid']."' alt='".$text['confirm-prefs-delete-alt']."' title='".$text['confirm-prefs-delete-title']."' onclick=\"return confirm('".$text['confirm-prefs-delete']."')\">$v_link_label_delete</a>\n";
}
echo " </td>\n";
echo "</tr>\n";

View File

@@ -53,7 +53,7 @@ if (count($_GET)>0) {
//redirect the user
require "includes/require.php";
require_once "includes/header.php";
echo "<meta http-equiv=\"refresh\" content=\"2;url=v_voicemail.php\">\n";
echo "<meta http-equiv=\"refresh\" content=\"2;url=voicemail.php\">\n";
echo "<div align='center'>\n";
echo "Voicemail Preferences set to default\n";
echo "</div>\n";