Changeset 1103

Show
Ignore:
Timestamp:
09/30/08 15:03:47 (3 months ago)
Author:
julieni
Message:

ticket #703: jelix-scripts: createdao with table prefix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.0.x/lib/jelix/CREDITS

    r1088 r1103  
    7979 - jSession: old sessions are not purged with some PHP configurations (#645) 
    8080 - linebreaks in textareas in jtpl plugin (#646) 
     81 - fixes about table_prefix in jDb (#702, #703) 
    8182 
    8283Bastien Jaillot (aka bastnic) 
  • branches/1.0.x/lib/jelix/db/jDbTools.class.php

    r992 r1103  
    44* @subpackage db 
    55* @author     Croes Gérald, Laurent Jouanneau 
    6 * @contributor Laurent Jouanneau, Gwendal Jouannic 
     6* @contributor Laurent Jouanneau, Gwendal Jouannic, Julien Issler 
    77* @copyright  2001-2005 CopixTeam, 2005-2006 Laurent Jouanneau 
    88* @copyright  2008 Gwendal Jouannic 
     9* @copyright  2008 Julien Issler 
    910* 
    1011* This class was get originally from the Copix project (CopixDbTools, CopixDbConnection, Copix 2.3dev20050901, http://www.copix.org) 
     
    106107    */ 
    107108    public function getFieldList ($tableName){ 
    108         return $this->_getFieldList ($tableName); 
     109        return $this->_getFieldList ($this->_connector->prefixTable($tableName)); 
    109110    } 
    110111 
  • trunk/lib/jelix/CREDITS

    r1098 r1103  
    3434 - jForms: Javascript error handling does not work for element <checkboxes> (#636) 
    3535 - jForms: Add support of the required attribute on <checkbox> (#635) 
     36 - fixes about table_prefix in jDb (#702, #703) 
    3637 
    3738Bastien Jaillot (aka bastnic) 
  • trunk/lib/jelix/db/jDbTools.class.php

    r1101 r1103  
    44* @subpackage db 
    55* @author     Croes Gérald, Laurent Jouanneau 
    6 * @contributor Laurent Jouanneau, Gwendal Jouannic 
     6* @contributor Laurent Jouanneau, Gwendal Jouannic, Julien Issler 
    77* @copyright  2001-2005 CopixTeam, 2005-2006 Laurent Jouanneau 
    88* @copyright  2008 Gwendal Jouannic 
     9* @copyright  2008 Julien Issler 
    910* 
    1011* This class was get originally from the Copix project (CopixDbTools, CopixDbConnection, Copix 2.3dev20050901, http://www.copix.org) 
     
    106107    */ 
    107108    public function getFieldList ($tableName){ 
    108         return $this->_getFieldList ($tableName); 
     109        return $this->_getFieldList ($this->_connector->prefixTable($tableName)); 
    109110    } 
    110111 
Download in other formats: Unified Diff Zip Archive