Skip to content

Commit

Permalink
Merge branch 'public/7.7' into public/7.9
Browse files Browse the repository at this point in the history
# Conflicts:
#	HTML/Default/home.html
#	Slim/Plugin/Favorites/HTML/EN/plugins/Favorites/index.html
  • Loading branch information
mherger committed Nov 15, 2017
2 parents c58f18d + 3f2a4dd commit f10471d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion HTML/Default/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
</span>
<div class="smallBrowseItemDetail">
[% END %]
[% IF dontGetString; link.key; ELSE; string; END %]
[% IF dontGetString; link.key | html; ELSE; string | html; END %]
[% IF link.icon && !noIcon %]
</div>
[% END %]
Expand Down
8 changes: 4 additions & 4 deletions Slim/Plugin/Favorites/HTML/EN/plugins/Favorites/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<input type="hidden" name="sess" value="[% sess %]">
<input type="hidden" name="action" value="editset">
<input type="hidden" name="removeoncancel" value="[% removeoncancel %]">
<input id="edit_title_[% entry.index %]" style="width: 71%;" type="text" class="stdedit" name="entrytitle" value="[% entry.title %]" [% IF newlevel %] onClick="this.value=''"[% END %]>
<input id="edit_title_[% entry.index %]" style="width: 71%;" type="text" class="stdedit" name="entrytitle" value="[% entry.title | html %]" [% IF newlevel %] onClick="this.value=''"[% END %]>
[% IF useAJAX %]
<input type="button" class="stdclick" style="display: inline; width: 10%;" value=[% "SAVE" | string %] onclick="editSave('[% entry.index %]', '[% sess %]'); return false;" />
<input type="button" class="stdclick" style="display: inline; width: 10%;" value=[% "PLUGIN_FAVORITES_CANCEL" | string %] onclick="editCancel('[% entry.index %]', '[% sess %]'[% IF removeoncancel %],[% removeoncancel %][% END %]); return false;" />
Expand All @@ -29,7 +29,7 @@
<input type="hidden" name="sess" value="[% sess %]">
<input type="hidden" name="action" value="editset">
<input type="hidden" name="removeoncancel" value="[% removeoncancel %]">
<input id="edit_title_[% entry.index %]" size="25" type="text" class="stdedit" name="entrytitle" value="[% entry.title %]" [% IF newentry %] onClick="this.value=''"[% END %]>
<input id="edit_title_[% entry.index %]" size="25" type="text" class="stdedit" name="entrytitle" value="[% entry.title | html %]" [% IF newentry %] onClick="this.value=''"[% END %]>
</td>
<td width="35%">
<input id="edit_url_[% entry.index %]" size="25" type="text" class="stdedit" name="entryurl" value="[% entry.url %]" [% IF newentry %] onClick="this.value=''"[% END %]>
Expand All @@ -55,7 +55,7 @@ <h4><form id="title" name="title" method="get" action="[% webroot %]plugins/Favo
[% "TITLE" | string %]
<input type="hidden" name="sess" value="[% sess %]">
<input type="hidden" name="index" value="[% levelindex %]">
<input id="newtitle" type="text" class="stdedit" name="title" style="width: 70%;" value="[% title %]" [% IF newentry %] onClick="this.value=''"[% END %] >
<input id="newtitle" type="text" class="stdedit" name="title" style="width: 70%;" value="[% title | html %]" [% IF newentry %] onClick="this.value=''"[% END %] >
<input type="submit" class="stdclick" value="[% 'SAVE' | string %]">
[% IF useAJAX %]
<input type="button" class="stdclick" style="display: inline; width: 10%;" value="[% 'PLUGIN_FAVORITES_CANCEL' | string %]" onclick="cancelTitle([% entry.index %]); return false;" />
Expand Down Expand Up @@ -217,7 +217,7 @@ <h4><form id="title" name="title" method="get" action="[% webroot %]plugins/Favo
href="javascript:void(0);" onClick="ajaxUpdate('index.html', 'insert&amp;index=[% levelindex %]&amp;sess=[% sess %]'[% IF initCall; ', ' _ initCall; END %]);" class="browseItemLink"
[%- ELSE %]
href="[% webroot %]plugins/Favorites/index.html?insert&amp;index=[% levelindex %]&amp;sess=[% sess %]"
[%- END %]><b><I>[% "PLUGIN_FAVORITES_PASTE" | string %]</b> [ [% deleted %] ]</I></a>
[%- END %]><b><I>[% "PLUGIN_FAVORITES_PASTE" | string %]</b> [ [% deleted | html %] ]</I></a>

[% END %]
[% IF useAJAX %]</span>[% END %]
Expand Down

0 comments on commit f10471d

Please sign in to comment.