fixed E_STRICT

This commit is contained in:
Sebastian Mendel
2007-08-02 11:40:16 +00:00
parent 3623ccbc73
commit d2b9013fad
14 changed files with 88 additions and 148 deletions

View File

@@ -68,15 +68,6 @@ require_once './libraries/List.class.php';
$this->build();
}
/**
* old PHP 4 style constructor
*
* @see PMA_List_Database::__construct()
*/
function PMA_List_Database($db_link_user = null, $db_link_control = null) {
$this->__construct($db_link_user, $db_link_control);
}
/**
* removes all databases not accessible by current user from list
*
@@ -354,13 +345,13 @@ require_once './libraries/List.class.php';
}
/**
* returns a part of the items
* returns a part of the items
*
* @uses PMA_List_Database::$items
* @uses array_slice()
* @param integer $offset
* @param integer $count
* @return array some items
* @return array some items
*/
function getLimitedItems($offset, $count)
{