Severity: Warning
Message: Declaration of Admin::delete($id = '') should be compatible with Core::delete($tbl, $database, $param, $id)
Filename: controllers/admin.php
Controller Admin:
function delete($id='')
{
core::delete('admin','gammu','ID',$id);
redirect('admin');
}}
Core:
function delete($tbl,$database,$param,$id)
{
$this->model->delete($tbl,$database,$param,$id);
}