diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-02-04 17:46:13 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-02-04 17:46:13 -0500 |
commit | 06c67fe14f6234d2a84d673af0e09f8651789413 (patch) | |
tree | 1056acaf8b276db7f514f6e25b6fa09148f6e1ab /admin | |
parent | 172be3b9091181a5eec3eb7aa5385ef2941ee000 (diff) | |
download | ampache-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')
-rw-r--r-- | admin/duplicates.php | 2 |
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'; |