Changeset 1499:fc4bc1ece727 for admin/media_item.php
- Timestamp:
- 08/20/13 16:47:16 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/media_item.php
r1454 r1499 489 489 echo '</div>'; 490 490 491 echo '<h3>'.__('Updates and modifications').'</h3>'; 492 491 493 if ($file->editable && $core_media_writable) 492 494 { … … 494 496 { 495 497 echo 496 '<form class="clear " action="'.html::escapeURL($page_url).'" method="post">'.497 '< fieldset><legend>'.__('Update thumbnails').'</legend>'.498 '<form class="clear fieldset" action="'.html::escapeURL($page_url).'" method="post">'. 499 '<h4>'.__('Update thumbnails').'</h4>'. 498 500 '<p>'.__('This will create or update thumbnails for this image.').'</p>'. 499 501 '<p><input type="submit" name="thumbs" value="'.__('Update thumbnails').'" />'. 500 502 form::hidden(array('id'),$id). 501 503 $core->formNonce().'</p>'. 502 '</f ieldset></form>';504 '</form>'; 503 505 } 504 506 … … 511 513 512 514 echo 513 '<form class="clear " id="file-unzip" action="'.html::escapeURL($page_url).'" method="post">'.514 '< fieldset><legend>'.__('Extract archive').'</legend>'.515 '<form class="clear fieldset" id="file-unzip" action="'.html::escapeURL($page_url).'" method="post">'. 516 '<h4>'.__('Extract archive').'</h4>'. 515 517 '<ul>'. 516 518 '<li><strong>'.__('Extract in a new directory').'</strong> : '. … … 524 526 form::hidden(array('id'),$id). 525 527 $core->formNonce().'</p>'. 526 '</f ieldset></form>';528 '</form>'; 527 529 } 528 530 529 531 echo 530 '<form class="clear " action="'.html::escapeURL($page_url).'" method="post">'.531 '< fieldset><legend>'.__('Change media properties').'</legend>'.532 '<form class="clear fieldset" action="'.html::escapeURL($page_url).'" method="post">'. 533 '<h4>'.__('Change media properties').'</h4>'. 532 534 '<p><label for="media_file">'.__('File name:').'</label>'. 533 535 form::field('media_file',30,255,html::escapeHTML($file->basename)).'</p>'. … … 543 545 form::hidden(array('id'),$id). 544 546 $core->formNonce().'</p>'. 545 '</f ieldset></form>';547 '</form>'; 546 548 547 549 echo 548 '<form class="clear " action="'.html::escapeURL($page_url).'" method="post" enctype="multipart/form-data">'.549 '< fieldset><legend>'.__('Change file').'</legend>'.550 '<form class="clear fieldset" action="'.html::escapeURL($page_url).'" method="post" enctype="multipart/form-data">'. 551 '<h4>'.__('Change file').'</h4>'. 550 552 '<div>'.form::hidden(array('MAX_FILE_SIZE'),DC_MAX_UPLOAD_SIZE).'</div>'. 551 553 '<p><label for="upfile">'.__('Choose a file:'). … … 556 558 form::hidden(array('id'),$id). 557 559 $core->formNonce().'</p>'. 558 '</f ieldset></form>';560 '</form>'; 559 561 560 562 if ($file->del) {
Note: See TracChangeset
for help on using the changeset viewer.