Changeset 9248
- Timestamp:
- 08/13/08 22:54:41 (4 months ago)
- Files:
-
- trunk/jaws/html/include/Jaws/Registry.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/jaws/html/include/Jaws/Registry.php
r9246 r9248 421 421 $sql .= " WHERE [comp_type] = {comp_type}"; 422 422 } 423 $comp onents = $GLOBALS['db']->queryAll($sql, $params, null, null, true);424 if (Jaws_Error::isError($comp onents)) {423 $comps = $GLOBALS['db']->queryAll($sql, $params, null, null, true); 424 if (Jaws_Error::isError($comps)) { 425 425 return false; 426 426 } 427 427 428 428 $this->_Registry = $regKeys + $this->_Registry; 429 $this->_LoadedComponents = components + $this->_LoadedComponents;429 $this->_LoadedComponents = $comps + $this->_LoadedComponents; 430 430 431 431 return true;
