]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/EmailSummary/siteemailsummaryhandler.php
Localisation updates from http://translatewiki.net.
[quix0rs-gnu-social.git] / plugins / EmailSummary / siteemailsummaryhandler.php
index 595c3267a1c519f6edaad0ea90e33a0796b6e042..1c0d4997deef0276152e39b76ef54d44403f1797 100644 (file)
@@ -70,27 +70,27 @@ class SiteEmailSummaryHandler extends QueueHandler
     
     function handle($object)
     {
-       $qm = QueueManager::get();
+        $qm = QueueManager::get();
 
-       try {
-           // Enqueue a summary for all users
+        try {
+            // Enqueue a summary for all users
            
-           $user = new User();
-           $user->find();
+            $user = new User();
+            $user->find();
            
-           while ($user->fetch()) {
-               try {
-                   $qm->enqueue($user->id, 'usersum');
-               } catch (Exception $e) {
-                   common_log(LOG_WARNING, $e->getMessage());
-                   continue;
-               }
-           }
-       } catch (Exception $e) {
-           common_log(LOG_WARNING, $e->getMessage());
-       }
+            while ($user->fetch()) {
+                try {
+                    $qm->enqueue($user->id, 'usersum');
+                } catch (Exception $e) {
+                    common_log(LOG_WARNING, $e->getMessage());
+                    continue;
+                }
+            }
+        } catch (Exception $e) {
+            common_log(LOG_WARNING, $e->getMessage());
+        }
        
-       return true;
+        return true;
     }
 }