diff --git a/bl-plugins/latest_posts/plugin.php b/bl-plugins/latest_posts/plugin.php
index 64b51d46..d8dc1af5 100644
--- a/bl-plugins/latest_posts/plugin.php
+++ b/bl-plugins/latest_posts/plugin.php
@@ -45,7 +45,7 @@ class pluginLatestPosts extends Plugin {
foreach($posts as $Post)
{
- $html .= '
';
+ $html .= '';
$html .= ''.$Post->title().'';
$html .= '';
}
diff --git a/bl-plugins/pages/plugin.php b/bl-plugins/pages/plugin.php
index d6738cfa..324d5bda 100644
--- a/bl-plugins/pages/plugin.php
+++ b/bl-plugins/pages/plugin.php
@@ -5,7 +5,7 @@ class pluginPages extends Plugin {
public function init()
{
$this->dbFields = array(
- 'homeLink'=>1,
+ 'homeLink'=>true,
'label'=>'Pages'
);
}
@@ -20,8 +20,7 @@ class pluginPages extends Plugin {
$html .= '';
$html .= '';
- $html .= '';
- $html .= 'getDbField('homeLink')?'checked':'').'>';
+ $html .= 'getDbField('homeLink')?'checked':'').'>';
$html .= '';
$html .= '
';
@@ -39,15 +38,15 @@ class pluginPages extends Plugin {
// Print the label if not empty.
$label = $this->getDbField('label');
if( !empty($label) ) {
- $html .= ''.$label.'
';
+ $html .= ''.$label.'
';
}
$html .= '';
- $html .= '
';
+ $html .= '';
// Show home link ?
if($this->getDbField('homeLink')) {
- $html .= '- ';
+ $html .= '
- ';
$html .= ''.$Language->get('Home').'';
$html .= '
';
}
@@ -59,8 +58,8 @@ class pluginPages extends Plugin {
if( $parent->published() )
{
// Print the parent
- $html .= '- ';
- $html .= ''.$parent->title().'';
+ $html .= '
- ';
+ $html .= ''.$parent->title().'';
// Check if the parent has children
if(isset($pagesParents[$parent->key()]))
diff --git a/bl-plugins/tags/metadata.json b/bl-plugins/tags/metadata.json
index 7b36ecc6..7eec067d 100644
--- a/bl-plugins/tags/metadata.json
+++ b/bl-plugins/tags/metadata.json
@@ -1,10 +1,10 @@
{
"author": "Bludit",
"email": "",
- "website": "https://plugins.bludit.com",
- "version": "1.4",
- "releaseDate": "2016-05-28",
+ "website": "https://github.com/dignajar/bludit-plugins",
+ "version": "1.1",
+ "releaseDate": "2016-02-13",
"license": "MIT",
- "compatible": "1.5beta",
+ "requires": "Bludit v1.1",
"notes": ""
}