cosmetics
This commit is contained in:
parent
12f791bab4
commit
2d2ce675f6
@ -1,6 +1,7 @@
|
|||||||
0.8.1 - dev
|
0.8.1 - dev
|
||||||
- [ ] update public templates
|
- [ ] update public templates
|
||||||
- [ ] fix javascript
|
- fix javascript
|
||||||
|
- fix modal
|
||||||
- add user pref on sort filters (dc 2.20)
|
- add user pref on sort filters (dc 2.20)
|
||||||
|
|
||||||
0.9 - 2021.09.11
|
0.9 - 2021.09.11
|
||||||
|
10
index.php
10
index.php
@ -496,9 +496,6 @@ if ($part == "links") {
|
|||||||
form::hidden('p', 'cinecturlink2') . form::hidden('part', 'links')
|
form::hidden('p', 'cinecturlink2') . form::hidden('part', 'links')
|
||||||
);
|
);
|
||||||
|
|
||||||
$hidden = $c2link_filter->values(true);
|
|
||||||
unset($hidden['part']);
|
|
||||||
|
|
||||||
$links_list->display($c2link_filter->page, $c2link_filter->nb,
|
$links_list->display($c2link_filter->page, $c2link_filter->nb,
|
||||||
'<form action="' . $core->adminurl->get('admin.plugin.cinecturlink2') . '" method="post" id="form-entries">' .
|
'<form action="' . $core->adminurl->get('admin.plugin.cinecturlink2') . '" method="post" id="form-entries">' .
|
||||||
|
|
||||||
@ -510,7 +507,7 @@ if ($part == "links") {
|
|||||||
'<p class="col right"><label for="action" class="classic">' . __('Selected links action:') . '</label> ' .
|
'<p class="col right"><label for="action" class="classic">' . __('Selected links action:') . '</label> ' .
|
||||||
form::combo('part', $action_combo) .
|
form::combo('part', $action_combo) .
|
||||||
'<input id="do-action" type="submit" value="' . __('ok') . '" disabled /></p>' .
|
'<input id="do-action" type="submit" value="' . __('ok') . '" disabled /></p>' .
|
||||||
$core->adminurl->getHiddenFormFields('admin.plugin.cinecturlink2', $hidden) .
|
$core->adminurl->getHiddenFormFields('admin.plugin.cinecturlink2', array_diff_key($c2link_filter->values(true), ['part' => ''])) .
|
||||||
form::hidden(['redir'], $links_redir) .
|
form::hidden(['redir'], $links_redir) .
|
||||||
$core->formNonce() .
|
$core->formNonce() .
|
||||||
'</div>' .
|
'</div>' .
|
||||||
@ -556,7 +553,10 @@ if ($part == "link") {
|
|||||||
<p><label for="newimageselect">' . __('or select from repository:') . ' ' .
|
<p><label for="newimageselect">' . __('or select from repository:') . ' ' .
|
||||||
form::combo('newimageselect', $media_combo, '', 'maximal') .
|
form::combo('newimageselect', $media_combo, '', 'maximal') .
|
||||||
'</label></p>' .
|
'</label></p>' .
|
||||||
'<p class="form-note">' . __('Go to media manager to add image to cinecturlink path.') . '</p>';
|
'<p class="form-note"><a href="' .
|
||||||
|
$core->adminurl->get('admin.media', ['d' => (string) $core->blog->settings->cinecturlink2->cinecturlink2_folder]) . '">' .
|
||||||
|
__('Go to media manager to add image to cinecturlink path.') .
|
||||||
|
'<a></p>';
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
|
Loading…
Reference in New Issue
Block a user