Remove user::deleteAppData() and replace it with an appData function

This commit is contained in:
Alexander Nicolaysen Sørnes
2007-04-21 19:44:10 +00:00
committed by WineHQ
parent 59d97b676d
commit 2af11e7333
3 changed files with 18 additions and 20 deletions

View File

@@ -316,23 +316,6 @@ class User {
return ($this->isLoggedIn() && $this->getPref("send_email","yes")=="yes");
}
/**
* Delete appData
*/
function deleteAppData($iAppDataId)
{
if(!$_SESSION['current']->canDeleteAppDataId($iAppDataId))
return false;
$hResult = query_parameters("DELETE from appData where id = '?' LIMIT 1",
$iAppDataId);
if($hResult)
return true;
return false;
}
function getAppRejectQueueQuery($queryAppFamily)
{
/* escape input as we can't easily use query_parameters() */