Changeset 141:340bbc2cd9f4 for inc/core/class.dc.workspace.php
- Timestamp:
- 05/04/11 15:52:51 (14 years ago)
- Branch:
- userprefs
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/core/class.dc.workspace.php
r33 r141 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($e->getMessage()); 51 } 52 } 49 53 } 50 54 … … 63 67 $rs = $this->con->select($strReq); 64 68 } catch (Exception $e) { 65 trigger_error(__('Unable to retrieve prefs:').' '.$this->con->error(), E_USER_ERROR); 69 //~ trigger_error(__('Unable to retrieve prefs:').' '.$this->con->error(), E_USER_ERROR); 70 throw $e; 66 71 } 67 72 }
Note: See TracChangeset
for help on using the changeset viewer.