News:

CPG Release 1.6.29
During HTML5 upload, keep pseudo blank code 200 messages from triggering error condition
added Russian language
correct failure to use theme menu icons in album manager
minor vulnerabilities mitigation

Main Menu

HACK: Link to origonal image directly.

Started by pkulak, May 04, 2004, 01:16:56 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

pkulak

In displayimage.php change:


   if (isset($image_size['reduced'])) {
       $winsizeX = $CURRENT_PIC_DATA['pwidth'] + 16;
       $winsizeY = $CURRENT_PIC_DATA['pheight'] + 16;
       $pic_html = "<a href=\"javascript:;\" onClick=\"MM_openBrWindow('displayimage.php?pid=$pid&fullsize=1','" . uniqid(rand()) . "','scrollbars=yes,toolbar=yes,status=yes,resizable=yes,width=$winsizeX,height=$winsizeY')\">";
       $pic_title = $lang_display_image_php['view_fs'] . "\n==============\n" . $pic_title; //added by gaugau
       $pic_html .= "<img src=\"" . $picture_url . "\" class=\"image\" border=\"0\" alt=\"{$lang_display_image_php['view_fs']}\" /><br />";
       $pic_html .= "</a>\n";
   } else {


to


   if (isset($image_size['reduced'])) {
       $winsizeX = $CURRENT_PIC_DATA['pwidth'] + 16;
       $winsizeY = $CURRENT_PIC_DATA['pheight'] + 16;
       $fulsize_url = get_pic_url($CURRENT_PIC_DATA, 'fullsize');
       $pic_html = "<a href=\"$fulsize_url\" target=\"top\">";
       $pic_title = $lang_display_image_php['view_fs'] . "\n==============\n" . $pic_title; //added by gaugau
       $pic_html .= "<img src=\"" . $picture_url . "\" class=\"image\" border=\"0\" alt=\"{$lang_display_image_php['view_fs']}\" /><br />";
       $pic_html .= "</a>\n";
   } else {
"To do any good at all, just believing you are right and you motives are good isn't enough." - Ursula K. Le Guin

Tarique Sani

Just turn the intermediate pictures off in the Admin and it will do the same....
SANIsoft PHP applications for E Biz

pkulak

LINK to the image directly, not DISPLAY the image directly. ;)
"To do any good at all, just believing you are right and you motives are good isn't enough." - Ursula K. Le Guin

Tarique Sani

SANIsoft PHP applications for E Biz