[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_5-6112-g3e666e9

Marc Delisle lem9 at users.sourceforge.net
Thu Jul 29 16:23:53 CEST 2010


The branch, master has been updated
       via  3e666e94de7dfcd092dd9fdbf838b88039bdb46c (commit)
      from  c1bf8133cd5c0d0da463f11e25b9c84eb4bede38 (commit)


- Log -----------------------------------------------------------------
commit 3e666e94de7dfcd092dd9fdbf838b88039bdb46c
Author: Marc Delisle <marc at infomarc.info>
Date:   Thu Jul 29 10:23:45 2010 -0400

    code and comments cleanup

-----------------------------------------------------------------------

Summary of changes:
 libraries/blobstreaming.lib.php |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/libraries/blobstreaming.lib.php b/libraries/blobstreaming.lib.php
index f0f74c8..adc0b14 100644
--- a/libraries/blobstreaming.lib.php
+++ b/libraries/blobstreaming.lib.php
@@ -141,13 +141,13 @@ function checkBLOBStreamingPlugins()
         if (function_exists("pbms_connection_pool_size")) {
             if ( isset($PMA_Config->settings['pbms_connection_pool_size'])) {
                 $pool_size = $PMA_Config->settings['pbms_connection_pool_size'];
-                if ($pool_size == "")
+                if ($pool_size == "") {
                     $pool_size = 1;
-             } else {
+                }
+            } else {
                 $pool_size = 1;
-           }
-               
-           pbms_connection_pool_size($pool_size);
+            }
+            pbms_connection_pool_size($pool_size);
         }
 
          // get BS server port
@@ -180,7 +180,7 @@ function checkBLOBStreamingPlugins()
         $PMA_Config->set('BLOBSTREAMING_SERVER', $serverCfg['host'] . ':' . $BS_PORT);
         $PMA_Config->set('PHP_PBMS_EXISTS', FALSE);
         $PMA_Config->set('FILEINFO_EXISTS', FALSE);
-		
+
         // check if PECL's fileinfo library exist
         $finfo = NULL;
 
@@ -320,8 +320,8 @@ function PMA_BS_IsPBMSReference($bs_reference, $db_name)
 
     // You do not really need a connection to the PBMS Daemon
     // to check if a reference looks valid but unfortunalty the API
-    // requires one  at this point so until the API is updated
-    // we need to oepen one here. If you use pool connections this
+    // requires one at this point so until the API is updated
+    // we need to epen one here. If you use pool connections this
     // will not be a performance problem.
      if (PMA_do_connect($db_name, FALSE) == FALSE) {
         return FALSE;


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list