Skip to content

Commit a79b398

Browse files
committed
Ignore any problems with a check - add '@' before to make PHP quiet.
1 parent ce43036 commit a79b398

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/pql_cache.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class pql_cache {
2929

3030
if(@is_array($this->cache)) {
3131
// Global variable storage
32-
if((($this->cache[$key] == '') or ($this->cache[$key] != $value) or ($key == 'PQL_CONF_DEBUG_ME')) and
32+
if((@($this->cache[$key] == '') or @($this->cache[$key] != $value) or ($key == 'PQL_CONF_DEBUG_ME')) and
3333
!@$_SESSION["loading_resonable_defaults"])
3434
{
3535
$this->cache[$key] = $value;

0 commit comments

Comments
 (0)