removed load_errormessages, must be implemented and called in submodules

This commit is contained in:
Roland Gruber 2004-09-25 10:07:23 +00:00
parent 9afa90dacc
commit 587e81be8f
1 changed files with 0 additions and 7 deletions

View File

@ -81,8 +81,6 @@ class baseModule {
*/
function init($base) {
$this->base = $base;
// load error messages
$this->load_errorMessages();
// Create Arrays with ldap attributes
$this->attributes =& $_SESSION[$this->base]->get_module_attributes(get_class($this));
$this->orig =& $_SESSION[$this->base]->get_module_attributes(get_class($this), true);
@ -142,11 +140,6 @@ class baseModule {
return $this->scope;
}
/**
* This function is needed to avoid error messages */
function load_errorMessages() {
}
/**
* Returns true if this module fits for the current scope.
*