Changeset 24540
- Timestamp:
- 08/26/08 22:55:10 (5 months ago)
- Files:
-
- 1 modified
-
development/main/includes/PNObject.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
development/main/includes/PNObject.class.php
r24395 r24540 89 89 $tkey = $this->_objType; 90 90 $ckey = $this->_objType . "_column"; 91 $this->_table = $pntables[$tkey];92 $this->_columns = $pntables[$ckey];91 $this->_table = isset($pntables[$tkey]) ? $pntables[$tkey] : null; 92 $this->_columns = isset($pntables[$ckey]) ? $pntables[$ckey] : null; 93 93 if ($field) { 94 94 $this->_objField = $field;
