Author: dr
Date: Wed Dec  5 16:49:31 2007
New Revision: 6947

Log:
- Fixed CS.

Modified:
    trunk/TreeDatabaseTiein/src/backends/db_materialized_path.php
    trunk/TreeDatabaseTiein/src/backends/db_parent_child.php
    trunk/TreeDatabaseTiein/src/stores/db_external.php

Modified: trunk/TreeDatabaseTiein/src/backends/db_materialized_path.php
==============================================================================
--- trunk/TreeDatabaseTiein/src/backends/db_materialized_path.php [iso-8859-1] 
(original)
+++ trunk/TreeDatabaseTiein/src/backends/db_materialized_path.php [iso-8859-1] 
Wed Dec  5 16:49:31 2007
@@ -363,7 +363,7 @@
 
         $s = $q->prepare();
         $s->execute();
-        return (int) $s->fetchColumn(0);
+        return (int) $s->fetchColumn( 0 );
     }
 
     /**

Modified: trunk/TreeDatabaseTiein/src/backends/db_parent_child.php
==============================================================================
--- trunk/TreeDatabaseTiein/src/backends/db_parent_child.php [iso-8859-1] 
(original)
+++ trunk/TreeDatabaseTiein/src/backends/db_parent_child.php [iso-8859-1] Wed 
Dec  5 16:49:31 2007
@@ -225,7 +225,7 @@
 
         $s = $q->prepare();
         $s->execute();
-        return (int) $s->fetchColumn(0);
+        return (int) $s->fetchColumn( 0 );
     }
 
     /**

Modified: trunk/TreeDatabaseTiein/src/stores/db_external.php
==============================================================================
--- trunk/TreeDatabaseTiein/src/stores/db_external.php [iso-8859-1] (original)
+++ trunk/TreeDatabaseTiein/src/stores/db_external.php [iso-8859-1] Wed Dec  5 
16:49:31 2007
@@ -237,7 +237,7 @@
         // Add set statements
         if ( $this->dataField === null )
         {
-            foreach( $node->data as $field => $value )
+            foreach ( $node->data as $field => $value )
             {
                $q->set( $db->quoteIdentifier( $field ), $q->bindValue( $value 
) );
             }


-- 
svn-components mailing list
svn-components@lists.ez.no
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to