PATH_THEME_PHP constant

This commit is contained in:
dignajar 2015-09-16 22:21:23 -03:00
parent 2a538f1f6c
commit afb4fc685b
2 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,6 @@ RewriteRule ^content/(.*)\.txt$ - [R=404,L]
# All URL process by index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*) index.php [L]
RewriteRule ^(.*) index.php [PT,L]
</IfModule>

View File

@ -151,6 +151,7 @@ define('HTML_PATH_PLUGINS', HTML_PATH_ROOT.'plugins/');
// PHP paths with dependency
define('PATH_THEME', PATH_ROOT.'themes/'.$Site->theme().'/');
define('PATH_THEME_PHP', PATH_THEME.'php'.DS)
// Objects with dependency
$Language = new dbLanguage( $Site->locale() );