From 80e0f88b56ca7e306d415604c608d8bc09496e21 Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Thu, 21 Jun 2012 17:12:06 +0200 Subject: Changes. But minor. Mostly usability changes. --- tpl/file/index.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tpl/file/index.php') diff --git a/tpl/file/index.php b/tpl/file/index.php index dc8cb52..abc340a 100644 --- a/tpl/file/index.php +++ b/tpl/file/index.php @@ -2,11 +2,11 @@ require("tpl/general/top.php"); if (count($files) == 0) { - echo '
You have uploaded no files yet.
'; + echo '

You have no files that are uploaded and not put in a folder.

'; } else { - echo '

You have uploaded ' . count($files) .' files.

'; + echo '

You have ' . count($files) .' files uploaded in no folder. Select a folder to view the files it contains.

'; echo ''; - echo ''; + echo '
InfoDate
'; foreach ($files as $fl) { $min = $baseurl . $fl['id'] . "-min." . $fl['extension']; $flf = $baseurl . $fl['id'] . "." . $fl['extension']; @@ -26,9 +26,9 @@ if (count($files) == 0) { /*echo 'Miniature:' . $min . '
'; echo 'Image:' . $flf . '
'; */ echo ''; - echo ''; } echo '
InfoDate
' . $fl['upl_date'] . '
'; + echo '
' . $fl['upl_date'] . ''; if ($can_delete) echo '
delete'; - if ($can_rename) echo '
edit info'; + if ($can_rename) echo ' | edit'; echo '
'; -- cgit v1.2.3