diff options
author | xue <> | 2005-11-10 16:50:52 +0000 |
---|---|---|
committer | xue <> | 2005-11-10 16:50:52 +0000 |
commit | b7eacfc49c2b15aef3a5dd7b71b826a045e7e59b (patch) | |
tree | c95dcecef2302c4824315bc29f1b5803886f2b06 /tests/UnitTests/framework/common.php | |
parent | 55c4ac1bfe565f1ca7f537fdd8b7a201be28e581 (diff) |
Fixed issues with svn directories.
Diffstat (limited to 'tests/UnitTests/framework/common.php')
-rw-r--r-- | tests/UnitTests/framework/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/UnitTests/framework/common.php b/tests/UnitTests/framework/common.php index dc268e28..71d6949e 100644 --- a/tests/UnitTests/framework/common.php +++ b/tests/UnitTests/framework/common.php @@ -17,7 +17,7 @@ class Prado extends PradoBase function __autoload($className)
{
- require_once($className);
+ require_once($className.Prado::CLASS_FILE_EXT);
}
error_reporting(E_ALL);
|