release 1.1.11

git-svn-id: svn://192.168.202.10@6 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2006-07-07 15:19:21 +00:00
parent 110b17ad04
commit e9ee080e1c
31 changed files with 419 additions and 218 deletions
+4 -3
View File
@@ -12,10 +12,11 @@
# 51208-2120 - Added option to login with vicidial_user login if allowed
# 51213-1650 - Added option to delete phones if allowed by vicidial_users
# 60421-1430 - check GET/POST vars lines with isset to not trigger PHP NOTICES
# 60427-1137 - Fixed phone search bug
#
$version = '1.1.10-2';
$build = '60421-1430';
$version = '1.1.10-3';
$build = '60427-1137';
require("dbconnect.php");
@@ -1562,7 +1563,7 @@ if ($ADD==66)
echo "<FONT FACE=\"ARIAL,HELVETICA\" COLOR=BLACK SIZE=2>";
$SQL = '';
if ($extension) {$SQL .= "user LIKE \"%$extension%\" and";}
if ($extension) {$SQL .= "extension LIKE \"%$extension%\" and";}
if ($fullname) {$SQL .= "fullname LIKE \"%$fullname%\" and";}
if ($phone_type) {$SQL .= "phone_type LIKE \"%$phone_type%\" and";}
$SQL = eregi_replace(" and$", "", $SQL);