diff --git a/account/account.php b/account/account.php index 672f38c..ae2bfa1 100644 --- a/account/account.php +++ b/account/account.php @@ -12,7 +12,6 @@
diff --git a/account/login.php b/account/login.php index 4b790c8..cb36f97 100644 --- a/account/login.php +++ b/account/login.php @@ -12,7 +12,6 @@ ID: ".$image['id']."

"; // File name - echo "

File Name: ".$image['imagename']."

"; + if (strlen($image['imagename']) > 30) { + echo "

File Name: ".trim(substr($image['imagename'], 0, 30))."...

"; + } else { + echo "

File Name: ".$image['imagename']."

"; + } - // Image Upload date - echo "

Last updated: ".$image['upload']." (+0)

"; + // File extention + echo "

File Type: ".pathinfo($image['imagename'], PATHINFO_EXTENSION)."

"; // Image resolution list($width, $height) = getimagesize($image_path); echo "

Image resolution: ".$width."x".$height."

"; + // Image Upload date + echo "

Last updated: ".$image['upload']." (+0)

"; + // Image download echo "Download image"; - - // Flyout test button ?>
diff --git a/index.php b/index.php index d8f4b7c..360bfe5 100644 --- a/index.php +++ b/index.php @@ -68,8 +68,6 @@