@@ -63,7 +63,7 @@ |
||
| 63 | 63 | try { |
| 64 | 64 | $profile = new \VolunteerProfile($uid); |
| 65 | 65 | $uids[$uid] = $profile->getDisplayName(); |
| 66 | - } catch (Exception $e) { |
|
| 66 | + } catch(Exception $e) { |
|
| 67 | 67 | $uids[$uid] = $uid; |
| 68 | 68 | } |
| 69 | 69 | } |
@@ -60,10 +60,13 @@ |
||
| 60 | 60 | static $uids = array(); |
| 61 | 61 | if(!isset($uids[$uid])) |
| 62 | 62 | { |
| 63 | - try { |
|
| 63 | + try |
|
| 64 | + { |
|
| 64 | 65 | $profile = new \VolunteerProfile($uid); |
| 65 | 66 | $uids[$uid] = $profile->getDisplayName(); |
| 66 | - } catch (Exception $e) { |
|
| 67 | + } |
|
| 68 | + catch (Exception $e) |
|
| 69 | + { |
|
| 67 | 70 | $uids[$uid] = $uid; |
| 68 | 71 | } |
| 69 | 72 | } |