Alexander Nicolaysen Sørnes : Minor improvements to maintainer notification mails

Chris Morgan cmorgan at winehq.org
Thu Jan 17 09:50:16 CST 2008


Module: appdb
Branch: master
Commit: 351e54255cbdbaf912c61ce50a869bb5c81ad20f
URL:    http://source.winehq.org/git/appdb.git/?a=commit;h=351e54255cbdbaf912c61ce50a869bb5c81ad20f

Author: Alexander Nicolaysen Sørnes <alex at thehandofagony.com>
Date:   Thu Jan 17 15:25:20 2008 +0100

Minor improvements to maintainer notification mails

---

 include/maintainer.php |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/include/maintainer.php b/include/maintainer.php
index f81a338..d0dc50c 100644
--- a/include/maintainer.php
+++ b/include/maintainer.php
@@ -1122,7 +1122,7 @@ class maintainer
       {
         // FIXME: should use a function to generate these urls and use it here and
         // in sidebar_maintainer.php and sidebar_admin.php
-        $sMsg = 'Please visit the test data queue ('.APPDB_ROOT."objectManager.php?sClass=version_queue&bIsQueue=true&sTitle=".
+        $sMsg = 'Please visit the version queue ('.APPDB_ROOT."objectManager.php?sClass=version_queue&bIsQueue=true&sTitle=".
           'Version%20Queue) to process queued versions for applications you maintain.'."\n";
       }
 
@@ -1192,18 +1192,23 @@ class maintainer
       if($iOldestQueuedEntryTime < $iMaintainerSignupTime)
         $iOldestQueuedEntryTime = $iMaintainerSignupTime;
 
-
+      $iScreenshotCount = count($oQueuedEntries->aScreenshotIds);
       // if we found any queued screenshots add the screenshot queue processing link
       // to the email
-      if(count($oQueuedEntries->aScreenshotIds) != 0)
+      if($iScreenshotCount != 0)
       {
+        if($iScreenshotCount == 1)
+          $sMsg.= 'There is one queued screenshot waiting to be processed. ';
+        else
+          $sMsg.= "There are $iScreenshotCount screenshots waiting to be processed. ";
+
         // FIXME: should use a function to generate these urls and use it here and
         // in sidebar_maintainer.php and sidebar_admin.php
         $sMsg.= 'Please visit the screenshot queue(';
         $sMsg.= APPDB_ROOT.'objectManager.php?sClass=screenshot&bIsQueue=true&sTitle=Screenshot%20Queue) ';
         $sMsg.= 'to process queued screenshots for versions you maintain.'."\n";
       }
-        
+
       // queued screenshots
       //////////////////////
 




More information about the wine-cvs mailing list