Subversion Repositories PHPX

Compare Revisions

Last modification

Ignore whitespace Rev 63 → Rev 64

/trunk/Application.php
2,7 → 2,7
 
namespace PointedEars\PHPX;
 
if (!defined('DIRECTORY_SEPARATOR'))
if (!defined('\\DIRECTORY_SEPARATOR'))
{
define('DIRECTORY_SEPARATOR', '/');
}
/trunk/View.php
5,7 → 5,7
/**
* A general view handled by a controller according to the MVC pattern
*
* @author tlahn
* @author Thomas 'PointedEars' Lahn <php@PointedEars.de>
*/
class View
{
162,7 → 162,7
}
else
{
throw new Exception('No template defined');
throw new \Exception('No template defined');
}
}