cvs is a bit weired

This commit is contained in:
Cornelius Weiß 2005-02-17 15:27:43 +00:00
parent 560e2c721b
commit e5a49cf13b

View File

@ -87,6 +87,12 @@ class so_resources
}
return false;
}
function delete($id)
{
$this->db->delete($this->rs_table,$id,__LINE__,__FILE__);
return true;
}
/*!
@function read
@ -95,13 +101,6 @@ class so_resources
@param int $id resource id
@return array with key => value or false if not found
*/
function delete($id)
{
$this->db->delete($this->rs_table,$id,__LINE__,__FILE__);
return true;
}
function read($id)
{
$tabledef = $this->db->metadata($table=$this->rs_table,$full=false);