Bludit v3.1

This commit is contained in:
Diego Najar 2018-10-07 14:03:58 +02:00
parent 78b5d83127
commit fbb63123f1
2 changed files with 7 additions and 8 deletions

View File

@ -61,7 +61,6 @@ else
// Page not found. // Page not found.
// User not logged. // User not logged.
// Slug is login. // Slug is login.
// Slug is login-email.
if ($url->notFound() || !$login->isLogged() || ($url->slug()==='login') ) { if ($url->notFound() || !$login->isLogged() || ($url->slug()==='login') ) {
$layout['controller'] = 'login'; $layout['controller'] = 'login';
$layout['view'] = 'login'; $layout['view'] = 'login';

View File

@ -2,9 +2,9 @@
// Bludit version // Bludit version
define('BLUDIT_VERSION', '3.1'); define('BLUDIT_VERSION', '3.1');
define('BLUDIT_CODENAME', 'Hops'); define('BLUDIT_CODENAME', 'Malt');
define('BLUDIT_RELEASE_DATE', '2018-10-06'); define('BLUDIT_RELEASE_DATE', '2018-10-07');
define('BLUDIT_BUILD', '20181006'); define('BLUDIT_BUILD', '20181007');
// Debug mode // Debug mode
// Change to FALSE, for prevent warning or errors on browser // Change to FALSE, for prevent warning or errors on browser
@ -122,10 +122,10 @@ if (file_exists(PATH_KERNEL.'bludit.pro.php')) {
} }
// Objects // Objects
$pages = new Pages(); // DEPRECATED v3.0.0 $dbPages $pages = new Pages();
$users = new Users(); // DEPRECATED v3.0.0 $users $users = new Users();
$tags = new Tags(); // DEPRECATED v3.0.0 $dbTags $tags = new Tags();
$categories = new Categories(); // DEPRECATED v3.0.0 $dbCategories $categories = new Categories();
$site = new Site(); $site = new Site();
$url = new Url(); $url = new Url();
$security = new Security(); $security = new Security();