diff -r 6db9adfa86ac -r acc4da012674 inc/record.inc.php --- a/inc/record.inc.php Tue Jan 01 20:36:17 2008 +0000 +++ b/inc/record.inc.php Tue Jan 01 22:07:00 2008 +0000 @@ -153,7 +153,6 @@ global $db; if (!xs($zoneid)) { - echo "debug: $zoneid"; error(ERR_RECORD_ACCESS_DENIED); } if (is_numeric($zoneid) || is_numeric($userid) || is_numeric($recordid)) @@ -167,6 +166,24 @@ } } +function delete_record_owner($zoneid,$rowid,$recordid) +{ + global $db; + if (!xs($zoneid)) + { + error(ERR_RECORD_ACCESS_DENIED); + } + if (is_numeric($zoneid) || is_numeric($rowid) || is_numeric($recordid)) + { + $db->query("DELETE FROM record_owners WHERE id='".$rowid."' AND record_id='".$recordid."'"); + return true; + } + else + { + error(sprintf(ERR_INV_ARGC, "delete_record_owner", "at least one of the arguments is not numeric")); + } +} + /* * Adds a record. * This function validates it if correct it inserts it into the database.