mirror of
https://github.com/prasathmani/tinyfilemanager.git
synced 2025-01-18 06:38:37 +01:00
Just a little fix with missing " in button HTML (#675)
Its a little html fix- its about 1787 line- the class value it not closed. ``` <button type="button" class="btn btn-sm btn-outline-primary name="Save" ``` changed to: ``` <button type="button" class="btn btn-sm btn-outline-primary" name="Save" ```
This commit is contained in:
parent
6bdc5ccfb3
commit
95d41a9518
@ -1785,7 +1785,7 @@ if (isset($_GET['edit'])) {
|
||||
<?php if ($is_text) { ?>
|
||||
<?php if ($isNormalEditor) { ?>
|
||||
<a title="Advanced" class="btn btn-sm btn-outline-primary" href="?p=<?php echo urlencode(trim(FM_PATH)) ?>&edit=<?php echo urlencode($file) ?>&env=ace"><i class="fa fa-pencil-square-o"></i> <?php echo lng('AdvancedEditor') ?></a>
|
||||
<button type="button" class="btn btn-sm btn-outline-primary name="Save" data-url="<?php echo fm_enc($file_url) ?>" onclick="edit_save(this,'nrl')"><i class="fa fa-floppy-o"></i> Save
|
||||
<button type="button" class="btn btn-sm btn-outline-primary" name="Save" data-url="<?php echo fm_enc($file_url) ?>" onclick="edit_save(this,'nrl')"><i class="fa fa-floppy-o"></i> Save
|
||||
</button>
|
||||
<?php } else { ?>
|
||||
<a title="Plain Editor" class="btn btn-sm btn-outline-primary" href="?p=<?php echo urlencode(trim(FM_PATH)) ?>&edit=<?php echo urlencode($file) ?>"><i class="fa fa-text-height"></i> <?php echo lng('NormalEditor') ?></a>
|
||||
|
Loading…
x
Reference in New Issue
Block a user