diff -r f3e3249784a8 lib/jelix/CREDITS
|
a
|
b
|
|
| 293 | 293 | - little bug fix in mysql.dbconnection.php (#97bis) |
| 294 | 294 | - jCache (#540) |
| 295 | 295 | |
| | 296 | Brice Tence (aka brayce) |
| | 297 | - small testapp bug solved about missing tables (#1064) |
| | 298 | |
| 296 | 299 | Thanks for all users, especially those who reported bugs. :-) |
| 297 | 300 | |
| 298 | 301 | Thanks for their works: |
diff -r f3e3249784a8 testapp/modules/jelix_tests/install/install.php
|
a
|
b
|
|
| 3 | 3 | * @package testapp |
| 4 | 4 | * @subpackage jelix_tests module |
| 5 | 5 | * @author Laurent Jouanneau |
| 6 | | * @contributor |
| | 6 | * @contributor Brice Tence |
| 7 | 7 | * @copyright 2009 Laurent Jouanneau |
| | 8 | * @copyright 2010 Brice Tence |
| 8 | 9 | * @link http://www.jelix.org |
| 9 | 10 | * @licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html |
| 10 | 11 | */ |
| … |
… |
|
| 15 | 16 | |
| 16 | 17 | $this->execSQLScript('install'); |
| 17 | 18 | |
| | 19 | //Create tables if they do not exist yet because of a specific configuration |
| | 20 | //(which is the case of testapp's out of the box config) |
| | 21 | $this->execSQLScript('../../../../lib/jelix/core-modules/jelix/install/sql/install_jsession.schema'); |
| | 22 | $this->execSQLScript('../../../../lib/jelix/core-modules/jelix/install/sql/install_jcache.schema'); |
| | 23 | |
| 18 | 24 | try { |
| 19 | 25 | $dbprofile = jDb::getProfile('testapp_pgsql', true); |
| 20 | 26 | } |
| … |
… |
|
| 26 | 32 | $this->execSQLScript('install', 'testapp_pgsql'); |
| 27 | 33 | |
| 28 | 34 | } |
| 29 | | } |
| 30 | | No newline at end of file |
| | 35 | } |