- Timestamp:
- Jul 1, 2009, 9:22:53 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/category_default.inc.php
r3282 r3485 104 104 array('start') 105 105 ); 106 106 $tn_src = get_thumbnail_url($row); 107 list($tn_width, $tn_height, $tn_type) = @getimagesize($tn_src); 107 108 $tpl_var = 108 109 array( 109 110 'ID' => $row['id'], 110 'TN_SRC' => get_thumbnail_url($row),111 'TN_SRC' => $tn_src, 111 112 'TN_ALT' => $row['file'], 112 113 'TN_TITLE' => get_thumbnail_title($row), … … 127 128 'FILE_HAS_HD' => ($row['has_high'] and $user['enabled_high']=='true') ? 128 129 true:false, /* lack of include/functions_picture.inc.php */ 130 'FILE_TN_WIDTH' => $tn_width, 131 'FILE_TN_HEIGHT' => $tn_height, 132 'FILE_TN_TYPE' => $tn_type, 129 133 ); 130 134
Note: See TracChangeset
for help on using the changeset viewer.