- Timestamp:
- 02/26/08 05:11:33 (9 months ago)
- Location:
- themes/diffuser
- Files:
-
- 3 removed
- 3 modified
-
album.php (modified) (1 diff)
-
changes to beta 3 plog-functions.txt (deleted)
-
meta.php (modified) (1 diff)
-
read me.txt (deleted)
-
root-files (deleted)
-
search.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
themes/diffuser/album.php
r510 r512 13 13 // set variables for the album 14 14 $capt = plogger_get_picture_caption(); 15 // find thumbnail width (hack to define size of li below) 16 list($thumb_width, $thumb_height) = getimagesize(plogger_get_picture_thumb()); 15 16 // find thumbnail width to define size of li below 17 $thumb_info = plogger_get_thumbnail_info(); 18 $thumb_width = $thumb_info[0]; // The width of the image. It is integer data type. 19 $thumb_height = $thumb_info[1]; // The height of the image. It is an integer data type. 20 17 21 ?> 18 22 -
themes/diffuser/meta.php
r510 r512 12 12 13 13 $theme_name = "Diffuser"; 14 $version = "0. 1";14 $version = "0.2"; 15 15 $author = "Oliver Baty"; 16 16 $url = "http://www.ardamis.com/"; -
themes/diffuser/search.php
r510 r512 16 16 17 17 <?php 18 // find thumbnail width (hack to define size of div below) 19 $the_url = plogger_get_picture_thumb(); 20 list($thumb_width, $thumb_height) = getimagesize($the_url); 18 // find thumbnail width 19 $thumb_info = plogger_get_thumbnail_info(); 20 $thumb_width = $thumb_info[0]; // The width of the image. It is integer data type. 21 $thumb_height = $thumb_info[1]; // The height of the image. It is an integer data type. 21 22 ?> 22 23
