Changeset:
        63bb7e90a300
        
https://sourceforge.net/p/mrbs/hg-code/ci/63bb7e90a3009260c5521f802e37e2484ce2790a
Author:
        Campbell Morrison <[email protected]>
Date:
        Wed Feb 22 17:12:05 2017 +0000
Log message:

Renamed PrintLogonBox()

diffstat:

 web/Themes/default/header.inc       |  4 ++--
 web/session/session_cookie.inc      |  2 +-
 web/session/session_http.inc        |  2 +-
 web/session/session_joomla.inc      |  2 +-
 web/session/session_php.inc         |  2 +-
 web/session/session_remote_user.inc |  2 +-
 web/session/session_wordpress.inc   |  2 +-
 7 files changed, 8 insertions(+), 8 deletions(-)

diffs (89 lines):

diff -r 07267ddeb661 -r 63bb7e90a300 web/Themes/default/header.inc
--- a/web/Themes/default/header.inc     Wed Feb 22 17:06:41 2017 +0000
+++ b/web/Themes/default/header.inc     Wed Feb 22 17:12:05 2017 +0000
@@ -183,11 +183,11 @@
   echo "</li>\n";
   
   // For session protocols that define their own logon box...
-  if (function_exists(__NAMESPACE__ . "\\PrintLogonBox"))
+  if (function_exists(__NAMESPACE__ . "\\print_logon_box"))
   {
     echo "<li>\n";
     echo "<div id=\"logon_box\">\n";
-    PrintLogonBox();
+    print_logon_box();
     echo "</div>\n";
     echo "</li>\n";
   }
diff -r 07267ddeb661 -r 63bb7e90a300 web/session/session_cookie.inc
--- a/web/session/session_cookie.inc    Wed Feb 22 17:06:41 2017 +0000
+++ b/web/session/session_cookie.inc    Wed Feb 22 17:12:05 2017 +0000
@@ -257,7 +257,7 @@
 
 
 // Print the logon entry on the top banner.
-function PrintLogonBox()
+function print_logon_box()
 {
   global $QUERY_STRING, $user_list_link, $day, $month, $year;
   
diff -r 07267ddeb661 -r 63bb7e90a300 web/session/session_http.inc
--- a/web/session/session_http.inc      Wed Feb 22 17:06:41 2017 +0000
+++ b/web/session/session_http.inc      Wed Feb 22 17:12:05 2017 +0000
@@ -71,7 +71,7 @@
 }
 
 // Print the logon entry on the top banner.
-function PrintLogonBox()
+function print_logon_box()
 {
   global $PHP_SELF, $QUERY_STRING, $user_list_link, $day, $month, $year;
   
diff -r 07267ddeb661 -r 63bb7e90a300 web/session/session_joomla.inc
--- a/web/session/session_joomla.inc    Wed Feb 22 17:06:41 2017 +0000
+++ b/web/session/session_joomla.inc    Wed Feb 22 17:12:05 2017 +0000
@@ -118,7 +118,7 @@
 }
 
 // Print the logon entry on the top banner.
-function PrintLogonBox()
+function print_logon_box()
 {
   global $QUERY_STRING, $user_list_link, $day, $month, $year;
   
diff -r 07267ddeb661 -r 63bb7e90a300 web/session/session_php.inc
--- a/web/session/session_php.inc       Wed Feb 22 17:06:41 2017 +0000
+++ b/web/session/session_php.inc       Wed Feb 22 17:12:05 2017 +0000
@@ -188,7 +188,7 @@
 
 
 // Print the logon entry on the top banner.
-function PrintLogonBox()
+function print_logon_box()
 {
   global $QUERY_STRING, $user_list_link, $day, $month, $year;
 
diff -r 07267ddeb661 -r 63bb7e90a300 web/session/session_remote_user.inc
--- a/web/session/session_remote_user.inc       Wed Feb 22 17:06:41 2017 +0000
+++ b/web/session/session_remote_user.inc       Wed Feb 22 17:12:05 2017 +0000
@@ -47,7 +47,7 @@
 }
 
 // Print the logon entry on the top banner.
-function PrintLogonBox()
+function print_logon_box()
 {
   global $user_list_link, $day, $month, $year;
   global $auth;
diff -r 07267ddeb661 -r 63bb7e90a300 web/session/session_wordpress.inc
--- a/web/session/session_wordpress.inc Wed Feb 22 17:06:41 2017 +0000
+++ b/web/session/session_wordpress.inc Wed Feb 22 17:12:05 2017 +0000
@@ -123,7 +123,7 @@
 
 
 // Print the logon entry on the top banner.
-function PrintLogonBox()
+function print_logon_box()
 {
   global $QUERY_STRING, $user_list_link, $day, $month, $year;
 

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to