summaryrefslogtreecommitdiffstats
path: root/admin/duplicates.php
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2013-02-04 17:46:13 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2013-02-04 17:46:13 -0500
commit06c67fe14f6234d2a84d673af0e09f8651789413 (patch)
tree1056acaf8b276db7f514f6e25b6fa09148f6e1ab /admin/duplicates.php
parent172be3b9091181a5eec3eb7aa5385ef2941ee000 (diff)
downloadampache-06c67fe14f6234d2a84d673af0e09f8651789413.tar.gz
ampache-06c67fe14f6234d2a84d673af0e09f8651789413.tar.bz2
ampache-06c67fe14f6234d2a84d673af0e09f8651789413.zip
duplicates.php: drop unnecessary Dba::escape()
This value is never passed to the database or output in any way.
Diffstat (limited to 'admin/duplicates.php')
-rw-r--r--admin/duplicates.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/duplicates.php b/admin/duplicates.php
index fbaa29b8..8790349e 100644
--- a/admin/duplicates.php
+++ b/admin/duplicates.php
@@ -32,7 +32,7 @@ UI::show_header();
/* Switch on Action */
switch ($_REQUEST['action']) {
case 'find_duplicates':
- $search_type = Dba::escape($_REQUEST['search_type']);
+ $search_type = $_REQUEST['search_type'];
$duplicates = Song::find_duplicates($search_type);
require_once Config::get('prefix') . '/templates/show_duplicate.inc.php';
require_once Config::get('prefix') . '/templates/show_duplicates.inc.php';