# HG changeset patch # User rejo # Date 1181087831 0 # Node ID f9ea2a05149b269d4049cf67e61c9ca0dfc3ff37 # Parent e96267359ab7910aa76ecbf08c9ce32c06b6be92 [feladat @ 66] Removed unneeded variable in validate_input function call. diff -r e96267359ab7 -r f9ea2a05149b inc/record.inc.php --- a/inc/record.inc.php Tue Jun 05 23:21:53 2007 +0000 +++ b/inc/record.inc.php Tue Jun 05 23:57:11 2007 +0000 @@ -134,7 +134,7 @@ } if (is_numeric($zoneid)) { - validate_input($recordid, $zoneid, $type, $content, $name, $prio, $ttl); + validate_input($zoneid, $type, $content, $name, $prio, $ttl); $change = time(); $db->query("UPDATE records set name='$name', type='$type', content='$content', ttl='$ttl', prio='$prio', change_date='$change' WHERE id=$recordid");