Changeset 9248

Show
Ignore:
Timestamp:
08/13/08 22:54:41 (4 months ago)
Author:
afz
Message:

fix typo

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/jaws/html/include/Jaws/Registry.php

    r9246 r9248  
    421421            $sql .= " WHERE [comp_type] = {comp_type}"; 
    422422        } 
    423         $components = $GLOBALS['db']->queryAll($sql, $params, null, null, true); 
    424         if (Jaws_Error::isError($components)) { 
     423        $comps = $GLOBALS['db']->queryAll($sql, $params, null, null, true); 
     424        if (Jaws_Error::isError($comps)) { 
    425425            return false; 
    426426        } 
    427427 
    428428        $this->_Registry = $regKeys + $this->_Registry; 
    429         $this->_LoadedComponents = components + $this->_LoadedComponents; 
     429        $this->_LoadedComponents = $comps + $this->_LoadedComponents; 
    430430 
    431431        return true;