Changeset 537


Ignore:
Timestamp:
Aug 5, 2015 11:24:11 PM (9 years ago)
Author:
anonymous
Message:

Minor

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/css/codebase.inc.css

    r485 r537  
    3737.sc-msg > .sc-msg-error a {
    3838    color: #fff;
     39    text-decoration: underline;
    3940}
    4041.sc-msg > .sc-msg-success { background-color: #76B15B; }
  • trunk/lib/Cache.inc.php

    r534 r537  
    6363
    6464    /*
    65     * Constructor. This is publically accessible for compatability with older implementations,
     65    * Constructor. This is publicly accessible for compatibility with older implementations,
    6666    * but the preferred method of instantiation is by use of the singleton pattern:
    6767    *   $cache =& Cache::getInstance('namespace');
     
    215215
    216216        if (isset($_SESSION['_cache'][$this->_ns]) && array_key_exists($key, $_SESSION['_cache'][$this->_ns])) {
    217             $app->logMsg(sprintf('Retreiving %s from cache.', $key), LOG_DEBUG, __FILE__, __LINE__);
     217            $app->logMsg(sprintf('Retrieving %s from cache.', $key), LOG_DEBUG, __FILE__, __LINE__);
    218218            // Move the accessed cached datum to the top of the stack. Maybe somebody knows a better way to do this?
    219219            $tmp =& $_SESSION['_cache'][$this->_ns][$key];
Note: See TracChangeset for help on using the changeset viewer.