Added extension as recording_lookup option

Allowed for secure sounds_web_server setting

git-svn-id: svn://192.168.202.10@3301 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2020-10-04 13:13:36 +00:00
parent eb85c6a885
commit ffc9d9716b
7 changed files with 51 additions and 23 deletions
+15 -3
View File
@@ -153,10 +153,11 @@
# 200622-1609 - Added more options to add_phone and update_phone functions
# 200815-1025 - Added campaigns_list & hopper_list functions
# 200824-2330 - Added search_method BLOCK option for hopper_list function
# 201002-1545 - Added extension as recording lookup option, Allowed for secure sounds_web_server setting
#
$version = '2.14-130';
$build = '200824-2330';
$version = '2.14-131';
$build = '201002-1545';
$api_url_log = 0;
$startMS = microtime();
@@ -1140,7 +1141,11 @@ if ($function == 'sounds_list')
if (preg_match('/tab/i',$format))
{echo "$k\t$file_names[$m]\t$file_dates[$m]\t$file_sizes[$m]\t$file_epoch[$m]\n";}
if (preg_match('/link/i',$format))
{echo "<a href=\"http://$sounds_web_server/$admin_web_dir$sounds_web_directory/$file_names[$m]\">$file_names[$m]</a><br>\n";}
{
if (!preg_match("/^http:|^https:/i",$sounds_web_server))
{$sounds_web_server = "http://".$sounds_web_server;}
echo "<a href=\"$sounds_web_server/$admin_web_dir$sounds_web_directory/$file_names[$m]\">$file_names[$m]</a><br>\n";
}
if (preg_match('/selectframe/i',$format))
{
if ($sf < 1)
@@ -7277,6 +7282,13 @@ if ($function == 'recording_lookup')
$search_ready++;
$search_ready++;
}
if ( (strlen($extension)>2) and (strlen($extension)<101) )
{
if (strlen($search_SQL)>5)
{$search_SQL .= " and ";}
$search_SQL .= "extension='$extension'";
$search_ready++;
}
if ( (strlen($date)>9) and (strlen($date)<11) )
{
if (strlen($search_SQL)>5)