Changeset 238
- Timestamp:
- 09/24/08 09:37:01 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/gallery/gal.php
r237 r238 64 64 $next_link = $prev_link = $next_headlink = $prev_headlink = null; 65 65 66 $gal_headlink = '<link rel="%s" title="%s" href="plugin.php?p=gallery& m=gal&id=%s" />';67 $gal_link = '<a href="plugin.php?p=gallery& m=gal&id=%s" title="%s">%s</a>';66 $gal_headlink = '<link rel="%s" title="%s" href="plugin.php?p=gallery&m=gal&id=%s" />'; 67 $gal_link = '<a href="plugin.php?p=gallery&m=gal&id=%s" title="%s">%s</a>'; 68 68 69 69 … … 336 336 $core->gallery->refreshGallery($post_id); 337 337 338 http::redirect('plugin.php?p=gallery& m=gal&id='.$post_id.'&upd=1');338 http::redirect('plugin.php?p=gallery&m=gal&id='.$post_id.'&upd=1'); 339 339 } 340 340 catch (Exception $e) … … 371 371 $core->gallery->refreshGallery($return_id); 372 372 373 http::redirect('plugin.php?p=gallery& m=gal&id='.$return_id.'&crea=1');373 http::redirect('plugin.php?p=gallery&m=gal&id='.$return_id.'&crea=1'); 374 374 } 375 375 catch (Exception $e) … … 462 462 '<div class="col">'. 463 463 "<h3>".__('Presentation thumbnail')."</h3>"; 464 $change_thumb_url='plugin.php?p=gallery& m=galthumb&gal_id='.$post_id;464 $change_thumb_url='plugin.php?p=gallery&m=galthumb&gal_id='.$post_id; 465 465 if ($c_media_dir) 466 $change_thumb_url .= '& d='.$f_media_dir;466 $change_thumb_url .= '&d='.$f_media_dir; 467 467 468 468 if ($has_thumb) { … … 473 473 echo '<li>'.$gal_thumb->media_dtstr.' - '. files::size($gal_thumb->size).' - '. 474 474 '<a href="'.$change_thumb_url.'">'.__('Change').'</a>'.'</li></ul>'; 475 echo '<li class="media-action"><form action="plugin.php?p=gallery& m=galthumb" method="post">'.475 echo '<li class="media-action"><form action="plugin.php?p=gallery&m=galthumb" method="post">'. 476 476 '<input type="image" src="images/minus.png" alt="'.__('Remove').'" '. 477 477 'title="'.__('Remove').'" /> '. … … 500 500 { 501 501 502 echo '<form action="plugin.php?p=gallery& m=gal" method="post" id="entry-form">';502 echo '<form action="plugin.php?p=gallery&m=gal" method="post" id="entry-form">'; 503 503 echo '<div id="entry-sidebar">'; 504 504
Note: See TracChangeset
for help on using the changeset viewer.