Add allowAnonymousSubmissions(). objectManager checks the return value of this new function and

exists with an error during certain actions if the user is not logged in and the function returns
false
This commit is contained in:
Alexander Nicolaysen Sørnes
2007-04-29 23:00:01 +00:00
committed by WineHQ
parent d09f78ca00
commit 11ecfa230b
13 changed files with 70 additions and 1 deletions

View File

@@ -308,6 +308,11 @@ class Vendor {
return $oRow->count;
}
function allowAnonymousSubmissions()
{
return FALSE;
}
}
?>