]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/other_functions.php
Even more rewrites to make use of the EL
[mailer.git] / inc / libs / other_functions.php
index 4cc7b7cf03d4c07f0fda3c540288e59dc7a969c1..811ff5fa2788a6cf5d5329f6aefd09adf2084fda 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/21/2009 *
- * ===============                              Last change: 10/21/2009 *
+ * Mailer v0.2.1-FINAL                                Start: 10/21/2009 *
+ * ===================                          Last change: 10/21/2009 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : other_functions.php                              *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -49,9 +50,6 @@ function displayDebugSqls () {
                // Translate/add some data
                $content['sw']       = $SW;
                $content['i']        = $i;
-               $content['num_rows'] = translateComma($content['num_rows']);
-               $content['affected'] = translateComma($content['affected']);
-               $content['sql_str']  = secureString($content['sql_str']);
                $content['timing']   = translateComma($content['timing'] * 1000);
 
                // Load row template
@@ -62,7 +60,16 @@ function displayDebugSqls () {
        } // END - foreach
 
        // Load main template
-       loadTemplate('admin_other_sqls', false, $OUT);
+       $GLOBALS['page_footer'] .= loadTemplate('admin_other_sqls', true, $OUT);
+}
+
+// Filter for debugging SQLs
+function FILTER_DISPLAY_DEBUG_SQL () {
+       // Shall we display SQL queries?
+       if ((isAdmin()) && (isExtensionInstalledAndNewer('other', '0.2.2')) && (getConfig('display_debug_sqls') == 'Y') && (!isGetRequestParameterSet('frame')) && ($GLOBALS['header_sent'] == 2)) {
+               // Then display it here
+               displayDebugSqls();
+       } // END - if
 }
 
 // [EOF]