diff --git a/bl-kernel/admin/controllers/edit-user.php b/bl-kernel/admin/controllers/edit-user.php
index 9e23f6b1..7caa38e4 100644
--- a/bl-kernel/admin/controllers/edit-user.php
+++ b/bl-kernel/admin/controllers/edit-user.php
@@ -19,20 +19,24 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') {
unset($_POST['role']);
}
- if (isset($_POST['deleteUserAndDeleteContent'])) {
+ if (isset($_POST['deleteUserAndDeleteContent']) && ($login->role()==='admin')) {
$_POST['deleteContent'] = true;
deleteUser($_POST);
- } elseif (isset($_POST['deleteUserAndKeepContent'])) {
+ } elseif (isset($_POST['deleteUserAndKeepContent']) && ($login->role()==='admin')) {
$_POST['deleteContent'] = false;
deleteUser($_POST);
- } elseif (isset($_POST['disableUser'])) {
+ } elseif (isset($_POST['disableUser']) && ($login->role()==='admin')) {
disableUser(array('username'=>$_POST['username']));
} else {
editUser($_POST);
}
Alert::set($L->g('The changes have been saved'));
- Redirect::page('users');
+
+ if ($login->role()==='admin') {
+ Redirect::page('users');
+ }
+ Redirect::page('edit-user/'.$login->username());
}
// ============================================================================
diff --git a/bl-kernel/admin/controllers/install-theme.php b/bl-kernel/admin/controllers/install-theme.php
index 1a3dabfa..f6b69bf2 100644
--- a/bl-kernel/admin/controllers/install-theme.php
+++ b/bl-kernel/admin/controllers/install-theme.php
@@ -21,20 +21,10 @@ checkRole(array('admin'));
// ============================================================================
// Main after POST
// ============================================================================
-$themeDirname = $layout['parameters'];
+$themeDirectory = $layout['parameters'];
-if (Sanitize::pathFile(PATH_THEMES.$themeDirname)) {
- $site->set(array('theme'=>$themeDirname));
-
- // Add to syslog
- $syslog->add(array(
- 'dictionaryKey'=>'new-theme-configured',
- 'notes'=>$themeDirname
- ));
-
- // Create an alert
- Alert::set( $L->g('The changes have been saved') );
-}
+// Activate theme
+activateTheme($themeDirectory);
// Redirect
Redirect::page('themes');
diff --git a/bl-kernel/admin/controllers/user-password.php b/bl-kernel/admin/controllers/user-password.php
index bc92811b..491f4ae7 100644
--- a/bl-kernel/admin/controllers/user-password.php
+++ b/bl-kernel/admin/controllers/user-password.php
@@ -20,7 +20,10 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') {
'newPassword'=>$_POST['newPassword'],
'confirmPassword'=>$_POST['confirmPassword']
))) {
- Redirect::page('users');
+ if ($login->role()==='admin') {
+ Redirect::page('users');
+ }
+ Redirect::page('edit-user/'.$login->username());
}
}
diff --git a/bl-kernel/admin/themes/booty/css/bludit.css b/bl-kernel/admin/themes/booty/css/bludit.css
index 5e9fd404..d4074eca 100644
--- a/bl-kernel/admin/themes/booty/css/bludit.css
+++ b/bl-kernel/admin/themes/booty/css/bludit.css
@@ -318,4 +318,10 @@ td.child {
background-color: rgba(255,255,255,0.7);
z-index: 10;
display: none;
+}
+
+img.profilePicture {
+ width: 30px;
+ border-radius: 30px;
+ border: 1px solid #ccc;
}
\ No newline at end of file
diff --git a/bl-kernel/admin/themes/booty/html/sidebar.php b/bl-kernel/admin/themes/booty/html/sidebar.php
index bca9461a..fad9080f 100644
--- a/bl-kernel/admin/themes/booty/html/sidebar.php
+++ b/bl-kernel/admin/themes/booty/html/sidebar.php
@@ -17,10 +17,13 @@
-
p('Content') ?>
+
+
+ p('Profile') ?>
+
diff --git a/bl-kernel/admin/views/configure-plugin.php b/bl-kernel/admin/views/configure-plugin.php
index 0e0613d7..7ab1e45a 100644
--- a/bl-kernel/admin/views/configure-plugin.php
+++ b/bl-kernel/admin/views/configure-plugin.php
@@ -1,9 +1,19 @@
-
-echo Bootstrap::pageTitle(array('title'=>$plugin->name(), 'icon'=>'wrench'));
+'jsform', 'class'=>'plugin-form')); ?>
-echo Bootstrap::formOpen(array('class'=>'plugin-form'));
+
+ formButtons()): ?>
+
+
+ $plugin->name(), 'icon'=>'cog')); ?>
+
+'tokenCSRF',
'value'=>$security->getTokenCSRF()
@@ -11,14 +21,6 @@ echo Bootstrap::formOpen(array('class'=>'plugin-form'));
// Print the plugin form
echo $plugin->form();
+?>
- if ($plugin->formButtons()) {
- echo '
-
- ';
- }
-
-echo Bootstrap::formClose();
+
\ No newline at end of file
diff --git a/bl-kernel/admin/views/content.php b/bl-kernel/admin/views/content.php
index 4d46bf61..ace2bd68 100644
--- a/bl-kernel/admin/views/content.php
+++ b/bl-kernel/admin/views/content.php
@@ -239,7 +239,7 @@ function table($type) {
$L->g('Delete'),
- 'buttonPrimaryClass'=>'btn-danger jsbuttonDeleteAccept',
+ 'buttonPrimaryClass'=>'btn-danger deletePageModalAcceptButton',
'buttonSecondary'=>$L->g('Cancel'),
'buttonSecondaryClass'=>'btn-secondary',
'modalTitle'=>$L->g('Delete content'),
diff --git a/bl-kernel/admin/views/edit-content.php b/bl-kernel/admin/views/edit-content.php
index d34fb745..18af7d9b 100644
--- a/bl-kernel/admin/views/edit-content.php
+++ b/bl-kernel/admin/views/edit-content.php
@@ -238,7 +238,7 @@ echo Bootstrap::formOpen(array(
'name'=>'',
'label'=>$L->g('Author'),
'placeholder'=>'',
- 'value'=>$login->username(),
+ 'value'=>$page->username(),
'tip'=>'',
'disabled'=>true
));
diff --git a/bl-kernel/admin/views/edit-user.php b/bl-kernel/admin/views/edit-user.php
index 68a9b94f..409278e0 100644
--- a/bl-kernel/admin/views/edit-user.php
+++ b/bl-kernel/admin/views/edit-user.php
@@ -13,10 +13,10 @@
@@ -149,28 +149,30 @@
'tip'=>$L->g('this-token-is-similar-to-a-password-it-should-not-be-shared')
));
- echo Bootstrap::formTitle(array('title'=>$L->g('Status')));
+ if (checkRole(array('admin'),false)) {
+ echo Bootstrap::formTitle(array('title'=>$L->g('Status')));
- echo Bootstrap::formInputText(array(
- 'name'=>'status',
- 'label'=>$L->g('Current status'),
- 'value'=>$user->enabled()?$L->g('Enabled'):$L->g('Disabled'),
- 'class'=>'',
- 'disabled'=>true,
- 'tip'=>$user->enabled()?'':$L->g('To enable the user you must set a new password')
- ));
+ echo Bootstrap::formInputText(array(
+ 'name'=>'status',
+ 'label'=>$L->g('Current status'),
+ 'value'=>$user->enabled()?$L->g('Enabled'):$L->g('Disabled'),
+ 'class'=>'',
+ 'disabled'=>true,
+ 'tip'=>$user->enabled()?'':$L->g('To enable the user you must set a new password')
+ ));
- if ($user->enabled()) {
- echo '
-
- ';
+ if ($user->enabled()) {
+ echo '
+
+ ';
+ }
}
?>
diff --git a/bl-kernel/admin/views/users.php b/bl-kernel/admin/views/users.php
index e5e7a999..83e75e1c 100644
--- a/bl-kernel/admin/views/users.php
+++ b/bl-kernel/admin/views/users.php
@@ -15,8 +15,7 @@ echo '
'.$L->g('Username').' |
- '.$L->g('First name').' |
- '.$L->g('Last name').' |
+ '.$L->g('Nickname').' |
'.$L->g('Email').' |
'.$L->g('Status').' |
'.$L->g('Role').' |
@@ -31,9 +30,8 @@ foreach ($list as $username) {
try {
$user = new User($username);
echo '
';
- echo ''.$username.' | ';
- echo ''.$user->firstName().' | ';
- echo ''.$user->lastName().' | ';
+ echo ''.$username.' | ';
+ echo ''.$user->nickname().' | ';
echo ''.$user->email().' | ';
echo ''.($user->enabled()?''.$L->g('Enabled').'':$L->g('Disabled')).' | ';
if ($user->role()=='admin') {
diff --git a/bl-kernel/functions.php b/bl-kernel/functions.php
index f531cdee..e7a9b62a 100644
--- a/bl-kernel/functions.php
+++ b/bl-kernel/functions.php
@@ -790,16 +790,18 @@ function getTag($key) {
}
}
+// Activate a theme
function activateTheme($themeDirectory) {
global $site;
global $syslog;
+ global $L;
if (Sanitize::pathFile(PATH_THEMES.$themeDirectory)) {
- $site->set(array('theme'=>$themeDirname));
+ $site->set(array('theme'=>$themeDirectory));
$syslog->add(array(
'dictionaryKey'=>'new-theme-configured',
- 'notes'=>$themeDirname
+ 'notes'=>$themeDirectory
));
Alert::set( $L->g('The changes have been saved') );
diff --git a/bl-kernel/helpers/theme.class.php b/bl-kernel/helpers/theme.class.php
index 43904423..464781e9 100644
--- a/bl-kernel/helpers/theme.class.php
+++ b/bl-kernel/helpers/theme.class.php
@@ -2,6 +2,26 @@
class Theme {
+ public static function socialNetworks()
+ {
+ global $site;
+ $socialNetworks = array(
+ 'github'=>'Github',
+ 'twitter'=>'Twitter',
+ 'facebook'=>'Facebook',
+ 'instagram'=>'Instagram',
+ 'codepen'=>'Codepen',
+ 'linkedin'=>'Linkedin'
+ );
+
+ foreach ($socialNetworks as $key=>$label) {
+ if (!$site->{$key}()) {
+ unset($socialNetworks[$key]);
+ }
+ }
+ return $socialNetworks;
+ }
+
public static function title()
{
global $site;
diff --git a/bl-languages/ar_MA.json b/bl-languages/ar_MA.json
index 2a06cd90..5d2812df 100644
--- a/bl-languages/ar_MA.json
+++ b/bl-languages/ar_MA.json
@@ -365,5 +365,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/bg_BG.json b/bl-languages/bg_BG.json
index b4c4a22f..39e66fd8 100644
--- a/bl-languages/bg_BG.json
+++ b/bl-languages/bg_BG.json
@@ -365,5 +365,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/cs_CZ.json b/bl-languages/cs_CZ.json
index 7e56384d..ec77f5cc 100644
--- a/bl-languages/cs_CZ.json
+++ b/bl-languages/cs_CZ.json
@@ -366,5 +366,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/de_CH.json b/bl-languages/de_CH.json
index 93932f81..0d66af94 100644
--- a/bl-languages/de_CH.json
+++ b/bl-languages/de_CH.json
@@ -366,5 +366,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/de_DE.json b/bl-languages/de_DE.json
index 19c0e85d..24e7862b 100644
--- a/bl-languages/de_DE.json
+++ b/bl-languages/de_DE.json
@@ -366,5 +366,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/en.json b/bl-languages/en.json
index 0a4a9654..86cd8fae 100644
--- a/bl-languages/en.json
+++ b/bl-languages/en.json
@@ -366,5 +366,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found.",
- "system-updated": "System updated."
+ "system-updated": "System updated.",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/es.json b/bl-languages/es.json
index fe81422d..17efaaf6 100644
--- a/bl-languages/es.json
+++ b/bl-languages/es.json
@@ -365,5 +365,6 @@
"select-cover-image": "Seleccionar imagen de portada",
"this-plugin-depends-on-the-following-plugins": "Este plugin depende de los siguientes plugins.",
"no-pages-found": "No se han encontrado páginas.",
- "system-updated": "Sistema actualizado."
+ "system-updated": "Sistema actualizado.",
+ "security": "Seguridad"
}
\ No newline at end of file
diff --git a/bl-languages/fa_IR.json b/bl-languages/fa_IR.json
index e1fd99bb..7e8386f6 100644
--- a/bl-languages/fa_IR.json
+++ b/bl-languages/fa_IR.json
@@ -365,5 +365,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/fi_FI.json b/bl-languages/fi_FI.json
index 1aa613c5..6ccccc56 100644
--- a/bl-languages/fi_FI.json
+++ b/bl-languages/fi_FI.json
@@ -365,5 +365,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/fr_FR.json b/bl-languages/fr_FR.json
index 24f7944e..aac3d147 100755
--- a/bl-languages/fr_FR.json
+++ b/bl-languages/fr_FR.json
@@ -366,5 +366,6 @@
"select-cover-image": "Sélectionnez une image d’accroche.",
"this-plugin-depends-on-the-following-plugins": "Ce plugin dépend des plugins suivants.",
"no-pages-found": "Aucune page trouvée",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/gr.json b/bl-languages/gr.json
index b25da175..034831d2 100644
--- a/bl-languages/gr.json
+++ b/bl-languages/gr.json
@@ -366,5 +366,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/he_IL.json b/bl-languages/he_IL.json
index 2b1dd23d..66d57290 100644
--- a/bl-languages/he_IL.json
+++ b/bl-languages/he_IL.json
@@ -366,5 +366,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/hu_HU.json b/bl-languages/hu_HU.json
index 1bc0dafc..13960096 100644
--- a/bl-languages/hu_HU.json
+++ b/bl-languages/hu_HU.json
@@ -365,5 +365,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/it_IT.json b/bl-languages/it_IT.json
index 1bfb4146..5bbe674b 100644
--- a/bl-languages/it_IT.json
+++ b/bl-languages/it_IT.json
@@ -365,5 +365,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/ja_JP.json b/bl-languages/ja_JP.json
index f1b09060..3d73aff9 100644
--- a/bl-languages/ja_JP.json
+++ b/bl-languages/ja_JP.json
@@ -366,5 +366,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/ms_MY.json b/bl-languages/ms_MY.json
index a86e1104..046d19ed 100644
--- a/bl-languages/ms_MY.json
+++ b/bl-languages/ms_MY.json
@@ -365,5 +365,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/nl_NL.json b/bl-languages/nl_NL.json
index a74f1f04..27abfe92 100644
--- a/bl-languages/nl_NL.json
+++ b/bl-languages/nl_NL.json
@@ -365,5 +365,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/pl_PL.json b/bl-languages/pl_PL.json
index 2b1e5f8a..c91380f2 100644
--- a/bl-languages/pl_PL.json
+++ b/bl-languages/pl_PL.json
@@ -366,5 +366,6 @@
"select-cover-image": "Wybierz okładkę wpisu",
"this-plugin-depends-on-the-following-plugins": "Ta wtyczka zależna jest od innych rozszerzeń",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/pt_BR.json b/bl-languages/pt_BR.json
index 67f5ad8d..d6c5de62 100644
--- a/bl-languages/pt_BR.json
+++ b/bl-languages/pt_BR.json
@@ -366,5 +366,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/pt_PT.json b/bl-languages/pt_PT.json
index 66b9675f..eb9de9cf 100644
--- a/bl-languages/pt_PT.json
+++ b/bl-languages/pt_PT.json
@@ -366,5 +366,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/ro_RO.json b/bl-languages/ro_RO.json
index 3e42935f..817be298 100644
--- a/bl-languages/ro_RO.json
+++ b/bl-languages/ro_RO.json
@@ -362,5 +362,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/ru_RU.json b/bl-languages/ru_RU.json
index d518bc49..b71b6e59 100644
--- a/bl-languages/ru_RU.json
+++ b/bl-languages/ru_RU.json
@@ -366,5 +366,6 @@
"select-cover-image": "Выбрать изображение обложки",
"this-plugin-depends-on-the-following-plugins": "Этот плагин зависит от следующих плагинов.",
"no-pages-found": "Страниц не найдено",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/tr_TR.json b/bl-languages/tr_TR.json
index 78932814..50182c64 100644
--- a/bl-languages/tr_TR.json
+++ b/bl-languages/tr_TR.json
@@ -367,5 +367,6 @@
"select-cover-image": "Kapak resmini seç",
"this-plugin-depends-on-the-following-plugins": "Bu eklenti aşağıdaki eklentilere bağlıdır.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/uk_UA.json b/bl-languages/uk_UA.json
index 971e8064..95d9c137 100644
--- a/bl-languages/uk_UA.json
+++ b/bl-languages/uk_UA.json
@@ -366,5 +366,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/vi_VN.json b/bl-languages/vi_VN.json
index 1cb98122..64b42796 100644
--- a/bl-languages/vi_VN.json
+++ b/bl-languages/vi_VN.json
@@ -365,5 +365,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/zh_CN.json b/bl-languages/zh_CN.json
index e57bfb19..aab9a20c 100644
--- a/bl-languages/zh_CN.json
+++ b/bl-languages/zh_CN.json
@@ -365,5 +365,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-languages/zh_TW.json b/bl-languages/zh_TW.json
index f46a84bc..c8824bd3 100644
--- a/bl-languages/zh_TW.json
+++ b/bl-languages/zh_TW.json
@@ -365,5 +365,6 @@
"select-cover-image": "Select cover image",
"this-plugin-depends-on-the-following-plugins": "This plugin depends on the following plugins.",
"no-pages-found": "No pages found",
- "system-updated": "System updated"
+ "system-updated": "System updated",
+ "security": "Security"
}
\ No newline at end of file
diff --git a/bl-themes/alternative/index.php b/bl-themes/alternative/index.php
index 6d974d15..6bafd69f 100755
--- a/bl-themes/alternative/index.php
+++ b/bl-themes/alternative/index.php
@@ -1,5 +1,5 @@
-
+
@@ -39,4 +39,4 @@
-
+