mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 16:32:20 +00:00
The method loadWhole has been removed from model DB_Model.
The same functionality has given by calling the load method without parameters
This commit is contained in:
@@ -80,7 +80,7 @@ class statistik extends Statistik_model
|
||||
* Laedt eine Statistik
|
||||
* @param $statistik_kurzbz
|
||||
*/
|
||||
public function load($statistik_kurzbz)
|
||||
public function load($statistik_kurzbz = null)
|
||||
{
|
||||
$result = parent::load($statistik_kurzbz);
|
||||
|
||||
@@ -133,7 +133,7 @@ class statistik extends Statistik_model
|
||||
parent::addOrder($order);
|
||||
}
|
||||
|
||||
$result = parent::loadWhole();
|
||||
$result = parent::load();
|
||||
|
||||
if (is_object($result) && $result->error == EXIT_SUCCESS && is_array($result->retval))
|
||||
{
|
||||
@@ -339,7 +339,7 @@ class statistik extends Statistik_model
|
||||
parent::addOrder('bezeichnung');
|
||||
parent::addOrder('statistik_kurzbz');
|
||||
|
||||
$result = parent::loadWhole();
|
||||
$result = parent::load();
|
||||
|
||||
if (is_object($result) && $result->error == EXIT_SUCCESS && is_array($result->retval))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user