summaryrefslogtreecommitdiff
path: root/app/views/index
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-02 20:57:51 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-12-02 20:57:51 +0100
commit986c7297e71d926afa584c6de293794a49f69adf (patch)
tree3215140d47d5db2cdad0c30c03ccadf9fc181ede /app/views/index
parent56b269cef6bc54fa8d8fc69ff0f0e8b2ffb36afb (diff)
OPML import plus tolérant
Plus correction bug checkUrl()
Diffstat (limited to 'app/views/index')
-rw-r--r--app/views/index/logs.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/index/logs.phtml b/app/views/index/logs.phtml
index 5a0b03b98..178ff8ad3 100644
--- a/app/views/index/logs.phtml
+++ b/app/views/index/logs.phtml
@@ -14,7 +14,7 @@
<?php $this->logsPaginator->render ('logs_pagination.phtml', 'page'); ?>
<?php foreach ($items as $log) { ?>
- <div class="log <?php echo $log->level (); ?>"><span class="date"><?php echo @date ('Y-m-d H:i:s', strtotime ($log->date ())); ?></span><?php echo htmlspecialchars ($log->info (), ENT_NOQUOTES, 'UTF-8'); ?></div>
+ <div class="log <?php echo $log->level (); ?>"><span class="date"><?php echo @date ('Y-m-d H:i:s', @strtotime ($log->date ())); ?></span><?php echo htmlspecialchars ($log->info (), ENT_NOQUOTES, 'UTF-8'); ?></div>
<?php } ?>
<?php $this->logsPaginator->render ('logs_pagination.phtml','page'); ?>