Changeset 1103
- Timestamp:
- 09/30/08 15:03:47 (3 months ago)
- Files:
-
- branches/1.0.x/lib/jelix/CREDITS (modified) (1 diff)
- branches/1.0.x/lib/jelix/db/jDbTools.class.php (modified) (2 diffs)
- trunk/lib/jelix/CREDITS (modified) (1 diff)
- trunk/lib/jelix/db/jDbTools.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0.x/lib/jelix/CREDITS
r1088 r1103 79 79 - jSession: old sessions are not purged with some PHP configurations (#645) 80 80 - linebreaks in textareas in jtpl plugin (#646) 81 - fixes about table_prefix in jDb (#702, #703) 81 82 82 83 Bastien Jaillot (aka bastnic) branches/1.0.x/lib/jelix/db/jDbTools.class.php
r992 r1103 4 4 * @subpackage db 5 5 * @author Croes Gérald, Laurent Jouanneau 6 * @contributor Laurent Jouanneau, Gwendal Jouannic 6 * @contributor Laurent Jouanneau, Gwendal Jouannic, Julien Issler 7 7 * @copyright 2001-2005 CopixTeam, 2005-2006 Laurent Jouanneau 8 8 * @copyright 2008 Gwendal Jouannic 9 * @copyright 2008 Julien Issler 9 10 * 10 11 * This class was get originally from the Copix project (CopixDbTools, CopixDbConnection, Copix 2.3dev20050901, http://www.copix.org) … … 106 107 */ 107 108 public function getFieldList ($tableName){ 108 return $this->_getFieldList ($t ableName);109 return $this->_getFieldList ($this->_connector->prefixTable($tableName)); 109 110 } 110 111 trunk/lib/jelix/CREDITS
r1098 r1103 34 34 - jForms: Javascript error handling does not work for element <checkboxes> (#636) 35 35 - jForms: Add support of the required attribute on <checkbox> (#635) 36 - fixes about table_prefix in jDb (#702, #703) 36 37 37 38 Bastien Jaillot (aka bastnic) trunk/lib/jelix/db/jDbTools.class.php
r1101 r1103 4 4 * @subpackage db 5 5 * @author Croes Gérald, Laurent Jouanneau 6 * @contributor Laurent Jouanneau, Gwendal Jouannic 6 * @contributor Laurent Jouanneau, Gwendal Jouannic, Julien Issler 7 7 * @copyright 2001-2005 CopixTeam, 2005-2006 Laurent Jouanneau 8 8 * @copyright 2008 Gwendal Jouannic 9 * @copyright 2008 Julien Issler 9 10 * 10 11 * This class was get originally from the Copix project (CopixDbTools, CopixDbConnection, Copix 2.3dev20050901, http://www.copix.org) … … 106 107 */ 107 108 public function getFieldList ($tableName){ 108 return $this->_getFieldList ($t ableName);109 return $this->_getFieldList ($this->_connector->prefixTable($tableName)); 109 110 } 110 111
