Code: Select all
if (
!isset(
$error->get('query')
)) {include("includes.php");}I thought that was the point of determining if it's set or not?!Call to a member function get() on a non-object
Moderator: General Moderators
Code: Select all
if (
!isset(
$error->get('query')
)) {include("includes.php");}I thought that was the point of determining if it's set or not?!Call to a member function get() on a non-object
Code: Select all
if (!class_exists('error')) {include("includes.php");}