diff options
author | tof <> | 2008-06-27 07:49:17 +0000 |
---|---|---|
committer | tof <> | 2008-06-27 07:49:17 +0000 |
commit | 03566372b32f4e861630bc9cf90d62cb6a4083ea (patch) | |
tree | f3fefb51a5055b3c8eebcf0d97dcd58d772bb811 | |
parent | 54b1d633d46c704cd5f46109c3552d66658db0ad (diff) |
Fixed #872
-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'; |