Removed an unnecessary variable.

git-svn-id: svn://192.168.202.10@1148 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mikec
2009-06-09 20:49:05 +00:00
parent 28cfce5d34
commit f597b5c686
@@ -108,7 +108,7 @@ $dbhA = DBI->connect("DBI:mysql:$VARDB_database:$VARDB_server:$VARDB_port", "$VA
or die "Couldn't connect to database: " . DBI->errstr;
# get all the recordings with the old_url
$stmtA = "SELECT recording_id, location, filename from recording_log where location LIKE '$old_url%';";
$stmtA = "SELECT recording_id, location from recording_log where location LIKE '$old_url%';";
if ( $DB ) {
print $stmtA . "\n";
}
@@ -124,7 +124,6 @@ while ($sthArows > $rec_count) {
# get the parameters from the DB
$rec_id = "$aryA[0]";
$location = "$aryA[1]";
$filename = "$aryA[2]";
# change the url
$new_loc = $location;