]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Old examples of lacking 'new' before 'Exception'
authorMikael Nordfeldth <mmn@hethane.se>
Tue, 6 May 2014 22:06:16 +0000 (00:06 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Tue, 6 May 2014 22:06:16 +0000 (00:06 +0200)
plugins/Irc/classes/Irc_waiting_message.php
plugins/Sample/classes/User_greeting_count.php

index eefd9049855df6cd3edca76be5ef2f745d1d04c0..c3fefc87847e9a9d78b93ffa58f2a831a4302925 100644 (file)
@@ -83,7 +83,7 @@ class Irc_waiting_message extends Managed_DataObject {
         if (!$result) {\r
             // TRANS: Exception thrown when an IRC attempts count could not be updated.\r
             // TRANS: %d is the object ID for which the count could not be updated.\r
-            throw Exception(sprintf(_m('Could not increment attempts count for %d.'), $this->id));\r
+            throw new Exception(sprintf(_m('Could not increment attempts count for %d.'), $this->id));\r
         }\r
     }\r
 \r
index 3da00b2d1a8dfa1d61c0344679095297b8dcfe41..6196820af6631c538b2f495b5af9553e98456f46 100644 (file)
@@ -101,7 +101,7 @@ class User_greeting_count extends Managed_DataObject
             if (!$result) {
                 // TRANS: Exception thrown when the user greeting count could not be saved in the database.
                 // TRANS: %d is a user ID (number).
-                throw Exception(sprintf(_m('Could not save new greeting count for %d.'),
+                throw new Exception(sprintf(_m('Could not save new greeting count for %d.'),
                                         $user_id));
             }
         } else {
@@ -114,7 +114,7 @@ class User_greeting_count extends Managed_DataObject
             if (!$result) {
                 // TRANS: Exception thrown when the user greeting count could not be saved in the database.
                 // TRANS: %d is a user ID (number).
-                throw Exception(sprintf(_m('Could not increment greeting count for %d.'),
+                throw new Exception(sprintf(_m('Could not increment greeting count for %d.'),
                                         $user_id));
             }
         }