Revision: 2996
          https://sourceforge.net/p/mrbs/code/2996/
Author:   cimorrison
Date:     2015-01-28 17:25:31 +0000 (Wed, 28 Jan 2015)
Log Message:
-----------
Renamed mrbsUpdateLastReminded() for consistency

Modified Paths:
--------------
    mrbs/trunk/web/approve_entry_handler.php
    mrbs/trunk/web/mrbs_sql.inc

Modified: mrbs/trunk/web/approve_entry_handler.php
===================================================================
--- mrbs/trunk/web/approve_entry_handler.php    2015-01-28 17:21:06 UTC (rev 
2995)
+++ mrbs/trunk/web/approve_entry_handler.php    2015-01-28 17:25:31 UTC (rev 
2996)
@@ -73,7 +73,7 @@
     case 'more_info':
       // update the last reminded time (the ball is back in the 
       // originator's court, so the clock gets reset)
-      mrbsUpdateLastReminded($id, $series);
+      update_last_reminded($id, $series);
       // update the more info fields
       update_more_info($id, $series, $user, $note);
       $result = TRUE;  // We'll assume success and end an email anyway
@@ -83,7 +83,7 @@
     // ACTION = "REMIND"
     case 'remind':
       // update the last reminded time
-      mrbsUpdateLastReminded($id, $series);
+      update_last_reminded($id, $series);
       $result = TRUE;  // We'll assume success and end an email anyway
       break;
       

Modified: mrbs/trunk/web/mrbs_sql.inc
===================================================================
--- mrbs/trunk/web/mrbs_sql.inc 2015-01-28 17:21:06 UTC (rev 2995)
+++ mrbs/trunk/web/mrbs_sql.inc 2015-01-28 17:25:31 UTC (rev 2996)
@@ -1009,7 +1009,7 @@
 //
 // Returns the number of tuples affected if OK (a number >= 0).
 // Returns -1 on error; use sql_error to get the error message.
-function mrbsUpdateLastReminded($id, $series)
+function update_last_reminded($id, $series)
 {
   global $tbl_entry, $tbl_repeat;
   
------------------------------------------------------------------------------
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to