- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/core/class.dc.workspace.php
r33 r147 46 46 $this->user_id =& $user_id; 47 47 48 $this->getPrefs($rs); 48 try {$this->getPrefs($rs);} catch (Exception $e) { 49 if (version_compare($core->getVersion('core'),'2.3','>')) { 50 trigger_error(__('Unable to retrieve prefs:').' '.$this->con->error(), E_USER_ERROR); 51 } 52 } 49 53 } 50 54 … … 63 67 $rs = $this->con->select($strReq); 64 68 } catch (Exception $e) { 65 t rigger_error(__('Unable to retrieve prefs:').' '.$this->con->error(), E_USER_ERROR);69 throw $e; 66 70 } 67 71 }
Note: See TracChangeset
for help on using the changeset viewer.