diff --git a/bl-plugins/latest_posts/plugin.php b/bl-plugins/latest_posts/plugin.php
index d8dc1af5..64b51d46 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 324d5bda..d6738cfa 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'=>true,
+ 'homeLink'=>1,
'label'=>'Pages'
);
}
@@ -20,7 +20,8 @@ class pluginPages extends Plugin {
$html .= '';
$html .= '';
- $html .= 'getDbField('homeLink')?'checked':'').'>';
+ $html .= '';
+ $html .= 'getDbField('homeLink')?'checked':'').'>';
$html .= '';
$html .= '
';
@@ -38,15 +39,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 .= '
';
}
@@ -58,8 +59,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 7eec067d..7b36ecc6 100644
--- a/bl-plugins/tags/metadata.json
+++ b/bl-plugins/tags/metadata.json
@@ -1,10 +1,10 @@
{
"author": "Bludit",
"email": "",
- "website": "https://github.com/dignajar/bludit-plugins",
- "version": "1.1",
- "releaseDate": "2016-02-13",
+ "website": "https://plugins.bludit.com",
+ "version": "1.4",
+ "releaseDate": "2016-05-28",
"license": "MIT",
- "requires": "Bludit v1.1",
+ "compatible": "1.5beta",
"notes": ""
}