Ticket #1064: ticket_1064.diff

File ticket_1064.diff, 1.6 kB (added by bricet, 6 months ago)
  • lib/jelix/CREDITS

    diff -r f3e3249784a8 lib/jelix/CREDITS
    a b  
    293293 - little bug fix in mysql.dbconnection.php (#97bis) 
    294294 - jCache (#540) 
    295295 
     296Brice Tence (aka brayce) 
     297 - small testapp bug solved about missing tables (#1064) 
     298 
    296299Thanks for all users, especially those who reported bugs. :-) 
    297300 
    298301Thanks for their works: 
  • testapp/modules/jelix_tests/install/install.php

    diff -r f3e3249784a8 testapp/modules/jelix_tests/install/install.php
    a b  
    33* @package     testapp 
    44* @subpackage  jelix_tests module 
    55* @author      Laurent Jouanneau 
    6 * @contributor 
     6* @contributor Brice Tence 
    77* @copyright   2009 Laurent Jouanneau 
     8* @copyright   2010 Brice Tence 
    89* @link        http://www.jelix.org 
    910* @licence     GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html 
    1011*/ 
     
    1516 
    1617      $this->execSQLScript('install'); 
    1718 
     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 
    1824      try { 
    1925        $dbprofile = jDb::getProfile('testapp_pgsql', true); 
    2026      } 
     
    2632      $this->execSQLScript('install', 'testapp_pgsql'); 
    2733 
    2834    } 
    29 } 
    30  No newline at end of file 
     35}