diff --git a/features.txt b/features.txt index 071e5d02..5d20744c 100644 --- a/features.txt +++ b/features.txt @@ -1,8 +1,7 @@ Diego Najar - ————————— -ToDO +ToDO list - Social links: Google+, Facebook y Twitter - Plugins: Edit databases from Dashboard - Plugins: SEO, Tinymce, diff --git a/kernel/boot/rules/70.build_posts.php b/kernel/boot/rules/70.build_posts.php index 2072a47a..28599a0f 100644 --- a/kernel/boot/rules/70.build_posts.php +++ b/kernel/boot/rules/70.build_posts.php @@ -19,14 +19,14 @@ function buildPost($key) // Post object. $Post = new Post($key); if( !$Post->isValid() ) { - Log::set(__METHOD__.LOG_SEP.'Error occurred when trying build the post from file with key'.$key); + Log::set(__METHOD__.LOG_SEP.'Error occurred when trying build the post from file with key: '.$key); return false; } // Page database. $db = $dbPosts->getDb($key); if( !$db ) { - Log::set(__METHOD__.LOG_SEP.'Error occurred when trying build the post from database with key'.$key); + Log::set(__METHOD__.LOG_SEP.'Error occurred when trying build the post from database with key: '.$key); return false; }