diff --git a/README.md b/README.md
index c8ea38c..2477684 100644
--- a/README.md
+++ b/README.md
@@ -38,6 +38,7 @@ Features
- User role
- Online backup
- File cache
+- Auto Update
Requirements
------------
@@ -173,7 +174,7 @@ So wrap the title with HTML comment with `t` for both side.
Demo
----
-Visit a real blog powered by HTMLy at [Danlogs](http://www.danlogs.com).
+Visit [HTMLy Demo](http://demo.htmly.com).
Credit
------
@@ -185,7 +186,7 @@ Contribute
1. Fork and edit
2. Submit pull request for consideration
-Contributers
+Contributors
----------
- [danpros](https://github.com/danpros) - [Weblog](http://www.danpros.com)
- [Kanti](https://github.com/Kanti) - [Weblog](https://kanti.de)
diff --git a/system/admin/admin.php b/system/admin/admin.php
index e3e52ac..fe17acd 100644
--- a/system/admin/admin.php
+++ b/system/admin/admin.php
@@ -47,7 +47,7 @@ function edit_post($title, $tag, $url, $content, $oldfile, $destination = null,
$oldurl = explode('_', $oldfile);
if($date !== null)
{
- $oldurl[0] = substr($oldurl[0],0,-19) . date('Y-m-d-h-i-s',strtotime($date));
+ $oldurl[0] = substr($oldurl[0], 0, strrpos($oldurl[0], '/')) . '/' . date('Y-m-d-h-i-s',strtotime($date));
}
$post_title = $title;
diff --git a/system/includes/functions.php b/system/includes/functions.php
index 62b963d..eda19a7 100644
--- a/system/includes/functions.php
+++ b/system/includes/functions.php
@@ -1580,11 +1580,11 @@ function head_contents($title, $description, $canonical) {
$wmt_id = config('google.wmt.id');
$title = '
' . $title . '';
- $favicon = '';
+ $favicon = '';
$charset = '';
- $generator = '';
+ $generator = '';
$xua = '';
- $viewport = '';
+ $viewport = '';
$description = '';
$sitemap = '';
$canonical = '';
@@ -1600,12 +1600,12 @@ function head_contents($title, $description, $canonical) {
}
if ($styleImage == 'on') {
- $output .= $title . "\n" . $favicon . "\n" . $charset . "\n" . $generator . "\n" . $xua . "\n" . $viewport . "\n" . $description . "\n" . $sitemap . "\n" . $canonical . "\n" . $feed . "\n" . $lightboxcss . "\n" . $jquery . "\n" . $lightbox . "\n" . $corejs . "\n" . $webmasterTools . "\n";
+ $output .= $charset . "\n" . $xua . "\n" . $title . "\n" . $description . "\n" . $viewport . "\n" . $generator . "\n" . $webmasterTools . "\n" . $favicon . "\n" . $canonical . "\n" . $sitemap . "\n" . $feed . "\n" . $lightboxcss . "\n" . $jquery . "\n" . $lightbox . "\n" . $corejs . "\n";
} else {
if ($jq == 'enable') {
- $output .= $title . "\n" . $favicon . "\n" . $charset . "\n" . $generator . "\n" . $xua . "\n" . $viewport . "\n" . $description . "\n" . $sitemap . "\n" . $canonical . "\n" . $feed . "\n" . $jquery . "\n" . $webmasterTools . "\n";
+ $output .= $charset . "\n" . $xua . "\n" . $title . "\n" . $description . "\n" . $viewport . "\n" . $generator . "\n" . $webmasterTools . "\n" . $favicon . "\n" . $canonical . "\n" . $sitemap . "\n" . $feed . "\n" . $jquery . "\n";
} else {
- $output .= $title . "\n" . $favicon . "\n" . $charset . "\n" . $generator . "\n" . $xua . "\n" . $viewport . "\n" . $description . "\n" . $sitemap . "\n" . $canonical . "\n" . $feed . "\n" . $webmasterTools . "\n";
+ $output .= $charset . "\n" . $xua . "\n" . $title . "\n" . $description . "\n" . $viewport . "\n" . $generator . "\n" . $webmasterTools . "\n" . $favicon . "\n" . $canonical . "\n" . $sitemap . "\n" . $feed . "\n";
}
}
diff --git a/themes/logs/css/style.css b/themes/logs/css/style.css
index d350e0f..e1fc5f4 100644
--- a/themes/logs/css/style.css
+++ b/themes/logs/css/style.css
@@ -585,13 +585,13 @@ ul li, ol li{
.about, .social, .archive, .comments, .tagcloud, .recent {
margin-bottom: 2em;
}
+
+#sidebar .recent ul {
+ margin: 0.25em 0 0.25em 1.3em;
+}
-.recent li:before {
- content: "►";
- font-size: 12px;
- -webkit-font-smoothing: antialiased;
- margin-right: 5px;
- color: #21759B;
+#sidebar .recent li {
+ list-style-type: circle;
}
/*-------------------------
@@ -888,4 +888,4 @@ ul.archivegroup{
}
.archivegroup li.expanded,.archivegroup li.collapsed{
list-style:none;
-}
\ No newline at end of file
+}