Changeset 13606
- Timestamp:
- 11/23/07 12:57:34 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/midcom.helper.datamanager2/type/blobs.php
r13424 r13606 238 238 { 239 239 $info['url'] = "{$_MIDGARD['self']}{$parent[MIDCOM_NAV_RELATIVEURL]}{$name}"; 240 echo $info['url'];241 240 } 242 241 else trunk/midcom/midcom.helper.datamanager2/widget/downloads.php
r13590 r13606 192 192 $html = "<tr class='midcom_helper_datamanager2_widget_downloads_download' title='{$info['guid']}'>\n" . 193 193 "<td class='exist filename' title='{$info['filename']}'>" . 194 "<a href='{$info['url']}' >{$info['filename']}</a>" .194 "<a href='{$info['url']}' class='download'>{$info['filename']}</a>" . 195 195 "</td>\n"; 196 196 $this->_elements["s_exist_{$identifier}_filename"] =& HTML_QuickForm::createElement('static', "s_exist_{$identifier}_filename", '', $html); trunk/midcom/midcom.helper.datamanager2/widget/images.php
r13590 r13606 312 312 $url = $this->_type->images[$identifier]['thumbnail']['url']; 313 313 $sizeline = $this->_type->images[$identifier]['thumbnail']['size_line']; 314 $preview = "<a href='{$info['url']}' ><img src='{$url}' {$sizeline} /></a>";314 $preview = "<a href='{$info['url']}' class='download'><img src='{$url}' {$sizeline} /></a>"; 315 315 } 316 316 else … … 338 338 339 339 $size_line = "width='{$x}' height='{$y}'"; 340 $preview = "<a href='{$url}' ><img src='{$url}' {$size_line} /></a>";340 $preview = "<a href='{$url}' class='download'><img src='{$url}' {$size_line} /></a>"; 341 341 } 342 342
