diff options
| -rw-r--r-- | HISTORY | 2 | ||||
| -rw-r--r-- | tests/unit/phpunit.php | 2 | 
2 files changed, 3 insertions, 1 deletions
| @@ -5,8 +5,10 @@ BUG: Ticket#841 - Strange output from THttpResponse (Christophe)  BUG: Ticket#847 - getBaseUrl sometimes fails (Christophe)  BUG: Ticket#843 - TDataList alternatinItem issue after changes in rev 2227 (Christophe)  BUG: Ticket#849 - TDatePicker selecting current date problem (Christophe) +BUG: Ticket#859 - errorhandler error (stever)  BUG: Ticket#860 - Prado::localize() bug (japplegame)  BUG: Ticket#870 - Callback with redirect breaks lifecycle of page (stever) +BUG: Ticket#872 - use PATH_SEPARATOR in phpunit.php (fragmaster b)  ENH: Added Prado.Validation.validateControl(id) on client side to validate a specific control (Michael)  Version 3.1.2 April 21, 2008 diff --git a/tests/unit/phpunit.php b/tests/unit/phpunit.php index 455f455c..8395c7a0 100644 --- a/tests/unit/phpunit.php +++ b/tests/unit/phpunit.php @@ -11,7 +11,7 @@   * the right package in unit test and code coverage reports.   */  define('PRADO_FRAMEWORK_DIR', dirname(__FILE__).'/../../framework'); -set_include_path(PRADO_FRAMEWORK_DIR.':'.get_include_path()); +set_include_path(PRADO_FRAMEWORK_DIR.PATH_SEPARATOR.get_include_path());  require_once dirname(__FILE__).'/Prado.php';  require_once PRADO_FRAMEWORK_DIR.'/prado.php'; | 
