Changeset 478 for trunk/lib/CSS.inc.php


Ignore:
Timestamp:
May 3, 2014 9:13:05 PM (10 years ago)
Author:
anonymous
Message:

Using array_key_exists() instead of isset() where null may be a used value. Added params to Prefs constructor. Include setDefault functionality for cookie storage types. Finished cookie storagetype of Prefs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/CSS.inc.php

    r473 r478  
    7171        $app =& App::getInstance();
    7272
    73         if (isset($this->_params[$param])) {
     73        if (array_key_exists($param, $this->_params)) {
    7474            return $this->_params[$param];
    7575        } else {
Note: See TracChangeset for help on using the changeset viewer.