Author: jablko
Date: Sun Sep 20 14:03:34 2009
New Revision: 3440

Log:
Cosmetic change

Modified:
   trunk/lib/model/om/BaseActorI18n.php
   trunk/lib/model/om/BaseActorName.php
   trunk/lib/model/om/BaseActorNameI18n.php
   trunk/lib/model/om/BaseContactInformation.php
   trunk/lib/model/om/BaseContactInformationI18n.php
   trunk/lib/model/om/BaseEventI18n.php
   trunk/lib/model/om/BaseFunctionI18n.php
   trunk/lib/model/om/BaseInformationObjectI18n.php
   trunk/lib/model/om/BaseMap.php
   trunk/lib/model/om/BaseMapI18n.php
   trunk/lib/model/om/BaseMenu.php
   trunk/lib/model/om/BaseMenuI18n.php
   trunk/lib/model/om/BaseNote.php
   trunk/lib/model/om/BaseNoteI18n.php
   trunk/lib/model/om/BaseOaiHarvest.php
   trunk/lib/model/om/BaseOaiRepository.php
   trunk/lib/model/om/BaseObject.php
   trunk/lib/model/om/BasePermission.php
   trunk/lib/model/om/BasePermissionScope.php
   trunk/lib/model/om/BasePhysicalObjectI18n.php
   trunk/lib/model/om/BasePlaceI18n.php
   trunk/lib/model/om/BaseProperty.php
   trunk/lib/model/om/BasePropertyI18n.php
   trunk/lib/model/om/BaseRepositoryI18n.php
   trunk/lib/model/om/BaseRights.php
   trunk/lib/model/om/BaseRightsI18n.php
   trunk/lib/model/om/BaseRightsTermRelation.php
   trunk/lib/model/om/BaseRole.php
   trunk/lib/model/om/BaseRolePermissionRelation.php
   trunk/lib/model/om/BaseSetting.php
   trunk/lib/model/om/BaseSettingI18n.php
   trunk/lib/model/om/BaseStaticPageI18n.php
   trunk/lib/model/om/BaseStatus.php
   trunk/lib/model/om/BaseSystemEvent.php
   trunk/lib/model/om/BaseTaxonomy.php
   trunk/lib/model/om/BaseTaxonomyI18n.php
   trunk/lib/model/om/BaseTermI18n.php
   trunk/lib/model/om/BaseUserRoleRelation.php
   trunk/lib/propel/builder/QubitObjectBuilder.php
   trunk/plugins/qbAclPlugin/lib/model/om/BaseAclAction.php
   trunk/plugins/qbAclPlugin/lib/model/om/BaseAclActionI18n.php
   trunk/plugins/qbAclPlugin/lib/model/om/BaseAclGroup.php
   trunk/plugins/qbAclPlugin/lib/model/om/BaseAclGroupI18n.php
   trunk/plugins/qbAclPlugin/lib/model/om/BaseAclPermission.php
   trunk/plugins/qbAclPlugin/lib/model/om/BaseAclUserGroup.php

Modified: trunk/lib/model/om/BaseActorI18n.php
==============================================================================
--- trunk/lib/model/om/BaseActorI18n.php        Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseActorI18n.php        Sun Sep 20 14:03:34 2009        
(r3440)
@@ -411,7 +411,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseActorName.php
==============================================================================
--- trunk/lib/model/om/BaseActorName.php        Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseActorName.php        Sun Sep 20 14:03:34 2009        
(r3440)
@@ -462,7 +462,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseActorNameI18n.php
==============================================================================
--- trunk/lib/model/om/BaseActorNameI18n.php    Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseActorNameI18n.php    Sun Sep 20 14:03:34 2009        
(r3440)
@@ -389,7 +389,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseContactInformation.php
==============================================================================
--- trunk/lib/model/om/BaseContactInformation.php       Sun Sep 20 13:58:39 
2009        (r3439)
+++ trunk/lib/model/om/BaseContactInformation.php       Sun Sep 20 14:03:34 
2009        (r3440)
@@ -482,7 +482,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseContactInformationI18n.php
==============================================================================
--- trunk/lib/model/om/BaseContactInformationI18n.php   Sun Sep 20 13:58:39 
2009        (r3439)
+++ trunk/lib/model/om/BaseContactInformationI18n.php   Sun Sep 20 14:03:34 
2009        (r3440)
@@ -393,7 +393,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseEventI18n.php
==============================================================================
--- trunk/lib/model/om/BaseEventI18n.php        Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseEventI18n.php        Sun Sep 20 14:03:34 2009        
(r3440)
@@ -391,7 +391,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseFunctionI18n.php
==============================================================================
--- trunk/lib/model/om/BaseFunctionI18n.php     Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseFunctionI18n.php     Sun Sep 20 14:03:34 2009        
(r3440)
@@ -405,7 +405,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseInformationObjectI18n.php
==============================================================================
--- trunk/lib/model/om/BaseInformationObjectI18n.php    Sun Sep 20 13:58:39 
2009        (r3439)
+++ trunk/lib/model/om/BaseInformationObjectI18n.php    Sun Sep 20 14:03:34 
2009        (r3440)
@@ -427,7 +427,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseMap.php
==============================================================================
--- trunk/lib/model/om/BaseMap.php      Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseMap.php      Sun Sep 20 14:03:34 2009        (r3440)
@@ -480,7 +480,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseMapI18n.php
==============================================================================
--- trunk/lib/model/om/BaseMapI18n.php  Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseMapI18n.php  Sun Sep 20 14:03:34 2009        (r3440)
@@ -389,7 +389,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseMenu.php
==============================================================================
--- trunk/lib/model/om/BaseMenu.php     Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseMenu.php     Sun Sep 20 14:03:34 2009        (r3440)
@@ -559,7 +559,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseMenuI18n.php
==============================================================================
--- trunk/lib/model/om/BaseMenuI18n.php Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseMenuI18n.php Sun Sep 20 14:03:34 2009        (r3440)
@@ -389,7 +389,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseNote.php
==============================================================================
--- trunk/lib/model/om/BaseNote.php     Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseNote.php     Sun Sep 20 14:03:34 2009        (r3440)
@@ -563,7 +563,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseNoteI18n.php
==============================================================================
--- trunk/lib/model/om/BaseNoteI18n.php Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseNoteI18n.php Sun Sep 20 14:03:34 2009        (r3440)
@@ -387,7 +387,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseOaiHarvest.php
==============================================================================
--- trunk/lib/model/om/BaseOaiHarvest.php       Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseOaiHarvest.php       Sun Sep 20 14:03:34 2009        
(r3440)
@@ -396,7 +396,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseOaiRepository.php
==============================================================================
--- trunk/lib/model/om/BaseOaiRepository.php    Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseOaiRepository.php    Sun Sep 20 14:03:34 2009        
(r3440)
@@ -414,7 +414,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseObject.php
==============================================================================
--- trunk/lib/model/om/BaseObject.php   Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseObject.php   Sun Sep 20 14:03:34 2009        (r3440)
@@ -564,7 +564,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BasePermission.php
==============================================================================
--- trunk/lib/model/om/BasePermission.php       Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BasePermission.php       Sun Sep 20 14:03:34 2009        
(r3440)
@@ -428,7 +428,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BasePermissionScope.php
==============================================================================
--- trunk/lib/model/om/BasePermissionScope.php  Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BasePermissionScope.php  Sun Sep 20 14:03:34 2009        
(r3440)
@@ -390,7 +390,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BasePhysicalObjectI18n.php
==============================================================================
--- trunk/lib/model/om/BasePhysicalObjectI18n.php       Sun Sep 20 13:58:39 
2009        (r3439)
+++ trunk/lib/model/om/BasePhysicalObjectI18n.php       Sun Sep 20 14:03:34 
2009        (r3440)
@@ -391,7 +391,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BasePlaceI18n.php
==============================================================================
--- trunk/lib/model/om/BasePlaceI18n.php        Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BasePlaceI18n.php        Sun Sep 20 14:03:34 2009        
(r3440)
@@ -393,7 +393,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseProperty.php
==============================================================================
--- trunk/lib/model/om/BaseProperty.php Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseProperty.php Sun Sep 20 14:03:34 2009        (r3440)
@@ -464,7 +464,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BasePropertyI18n.php
==============================================================================
--- trunk/lib/model/om/BasePropertyI18n.php     Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BasePropertyI18n.php     Sun Sep 20 14:03:34 2009        
(r3440)
@@ -387,7 +387,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseRepositoryI18n.php
==============================================================================
--- trunk/lib/model/om/BaseRepositoryI18n.php   Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseRepositoryI18n.php   Sun Sep 20 14:03:34 2009        
(r3440)
@@ -415,7 +415,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseRights.php
==============================================================================
--- trunk/lib/model/om/BaseRights.php   Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseRights.php   Sun Sep 20 14:03:34 2009        (r3440)
@@ -506,7 +506,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseRightsI18n.php
==============================================================================
--- trunk/lib/model/om/BaseRightsI18n.php       Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseRightsI18n.php       Sun Sep 20 14:03:34 2009        
(r3440)
@@ -387,7 +387,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseRightsTermRelation.php
==============================================================================
--- trunk/lib/model/om/BaseRightsTermRelation.php       Sun Sep 20 13:58:39 
2009        (r3439)
+++ trunk/lib/model/om/BaseRightsTermRelation.php       Sun Sep 20 14:03:34 
2009        (r3440)
@@ -392,7 +392,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseRole.php
==============================================================================
--- trunk/lib/model/om/BaseRole.php     Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseRole.php     Sun Sep 20 14:03:34 2009        (r3440)
@@ -448,7 +448,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseRolePermissionRelation.php
==============================================================================
--- trunk/lib/model/om/BaseRolePermissionRelation.php   Sun Sep 20 13:58:39 
2009        (r3439)
+++ trunk/lib/model/om/BaseRolePermissionRelation.php   Sun Sep 20 14:03:34 
2009        (r3440)
@@ -384,7 +384,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseSetting.php
==============================================================================
--- trunk/lib/model/om/BaseSetting.php  Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseSetting.php  Sun Sep 20 14:03:34 2009        (r3440)
@@ -462,7 +462,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseSettingI18n.php
==============================================================================
--- trunk/lib/model/om/BaseSettingI18n.php      Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseSettingI18n.php      Sun Sep 20 14:03:34 2009        
(r3440)
@@ -387,7 +387,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseStaticPageI18n.php
==============================================================================
--- trunk/lib/model/om/BaseStaticPageI18n.php   Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseStaticPageI18n.php   Sun Sep 20 14:03:34 2009        
(r3440)
@@ -389,7 +389,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseStatus.php
==============================================================================
--- trunk/lib/model/om/BaseStatus.php   Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseStatus.php   Sun Sep 20 14:03:34 2009        (r3440)
@@ -390,7 +390,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseSystemEvent.php
==============================================================================
--- trunk/lib/model/om/BaseSystemEvent.php      Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseSystemEvent.php      Sun Sep 20 14:03:34 2009        
(r3440)
@@ -398,7 +398,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseTaxonomy.php
==============================================================================
--- trunk/lib/model/om/BaseTaxonomy.php Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseTaxonomy.php Sun Sep 20 14:03:34 2009        (r3440)
@@ -482,7 +482,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseTaxonomyI18n.php
==============================================================================
--- trunk/lib/model/om/BaseTaxonomyI18n.php     Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseTaxonomyI18n.php     Sun Sep 20 14:03:34 2009        
(r3440)
@@ -389,7 +389,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseTermI18n.php
==============================================================================
--- trunk/lib/model/om/BaseTermI18n.php Sun Sep 20 13:58:39 2009        (r3439)
+++ trunk/lib/model/om/BaseTermI18n.php Sun Sep 20 14:03:34 2009        (r3440)
@@ -387,7 +387,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/model/om/BaseUserRoleRelation.php
==============================================================================
--- trunk/lib/model/om/BaseUserRoleRelation.php Sun Sep 20 13:58:39 2009        
(r3439)
+++ trunk/lib/model/om/BaseUserRoleRelation.php Sun Sep 20 14:03:34 2009        
(r3440)
@@ -384,7 +384,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/lib/propel/builder/QubitObjectBuilder.php
==============================================================================
--- trunk/lib/propel/builder/QubitObjectBuilder.php     Sun Sep 20 13:58:39 
2009        (r3439)
+++ trunk/lib/propel/builder/QubitObjectBuilder.php     Sun Sep 20 14:03:34 
2009        (r3440)
@@ -345,14 +345,14 @@
 
   protected function addGetFromRow(&$script)
   {
-    // Cache sub-class instances in the base class
+    // Cache subclass instances in the base class
     if (isset($this->inheritanceFk))
     {
       return;
     }
 
     // Object instances are indexed by primary keys.  In the case of
-    // multi-table inheritance, all the primary keys are in the base table, so
+    // multi table inheritance, all the primary keys are in the base table, so
     // we get the primary key values directly from the result set and possibly
     // avoid constructing a new object.  An alternative would be to construct a
     // new object, but return an old object if one existed.
@@ -437,7 +437,7 @@
 EOF;
   }
 
-  // The following three functions can disappear from multi-table inheritance
+  // The following three functions can disappear from multi table inheritance
   // children once we have late static binding.  Children must have the same
   // primary keys as the base table:
   // http://php.net/manual/en/language.oop5.late-static-bindings.php
@@ -1439,7 +1439,8 @@
 
       if (null !== \$id = $this->basePeerClassName::doInsert(\$criteria, 
\$connection))
       {
-        // Guess that the first primary key of the first table is 
auto-incremented
+        \/\/ Guess that the first primary key of the first table is auto
+        \/\/ incremented
         if (\$this->tables[0] == \$table)
         {
           \$columns = \$table->getPrimaryKeyColumns();

Modified: trunk/plugins/qbAclPlugin/lib/model/om/BaseAclAction.php
==============================================================================
--- trunk/plugins/qbAclPlugin/lib/model/om/BaseAclAction.php    Sun Sep 20 
13:58:39 2009        (r3439)
+++ trunk/plugins/qbAclPlugin/lib/model/om/BaseAclAction.php    Sun Sep 20 
14:03:34 2009        (r3440)
@@ -476,7 +476,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/plugins/qbAclPlugin/lib/model/om/BaseAclActionI18n.php
==============================================================================
--- trunk/plugins/qbAclPlugin/lib/model/om/BaseAclActionI18n.php        Sun Sep 
20 13:58:39 2009        (r3439)
+++ trunk/plugins/qbAclPlugin/lib/model/om/BaseAclActionI18n.php        Sun Sep 
20 14:03:34 2009        (r3440)
@@ -389,7 +389,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/plugins/qbAclPlugin/lib/model/om/BaseAclGroup.php
==============================================================================
--- trunk/plugins/qbAclPlugin/lib/model/om/BaseAclGroup.php     Sun Sep 20 
13:58:39 2009        (r3439)
+++ trunk/plugins/qbAclPlugin/lib/model/om/BaseAclGroup.php     Sun Sep 20 
14:03:34 2009        (r3440)
@@ -599,7 +599,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/plugins/qbAclPlugin/lib/model/om/BaseAclGroupI18n.php
==============================================================================
--- trunk/plugins/qbAclPlugin/lib/model/om/BaseAclGroupI18n.php Sun Sep 20 
13:58:39 2009        (r3439)
+++ trunk/plugins/qbAclPlugin/lib/model/om/BaseAclGroupI18n.php Sun Sep 20 
14:03:34 2009        (r3440)
@@ -389,7 +389,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/plugins/qbAclPlugin/lib/model/om/BaseAclPermission.php
==============================================================================
--- trunk/plugins/qbAclPlugin/lib/model/om/BaseAclPermission.php        Sun Sep 
20 13:58:39 2009        (r3439)
+++ trunk/plugins/qbAclPlugin/lib/model/om/BaseAclPermission.php        Sun Sep 
20 14:03:34 2009        (r3440)
@@ -398,7 +398,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

Modified: trunk/plugins/qbAclPlugin/lib/model/om/BaseAclUserGroup.php
==============================================================================
--- trunk/plugins/qbAclPlugin/lib/model/om/BaseAclUserGroup.php Sun Sep 20 
13:58:39 2009        (r3439)
+++ trunk/plugins/qbAclPlugin/lib/model/om/BaseAclUserGroup.php Sun Sep 20 
14:03:34 2009        (r3440)
@@ -384,7 +384,9 @@
 
       if (null !== $id = BasePeer::doInsert($criteria, $connection))
       {
-                if ($this->tables[0] == $table)
+        // Guess that the first primary key of the first table is auto
+        // incremented
+        if ($this->tables[0] == $table)
         {
           $columns = $table->getPrimaryKeyColumns();
           $this->values[$columns[0]->getPhpName()] = $id;

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.ca/group/qubit-commits?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to