Severity: 4096, Object of class stdClass could not be converted to string Error Description: A PHP Error was encountered Severity: 4096 Message: Object of class stdClass could not be converted to string Filename: libraries/Parser.php Line Number: 101 Solution: if (is_array($val)) { $template = $this->_parse_pair($key, $val, $template); } elseif(is_object($val)){ $val = (array)$val; $template = $this->_parse_pair($key, $val, […]