mirror of
https://github.com/friendica/friendica
synced 2024-11-10 02:22:55 +00:00
Fix undefined tamplate variables in comment_item.tpl
- Remove unused "type" hidden field in comment form - Remove unused moderated_comment.tpl files
This commit is contained in:
parent
f69dab6d1c
commit
da2ce5c4f4
8 changed files with 1 additions and 100 deletions
|
@ -1212,6 +1212,7 @@ function status_editor(App $a, $x, $notes_cid = 0, $popup = false)
|
||||||
'$edimg' => DI::l10n()->t('Image'),
|
'$edimg' => DI::l10n()->t('Image'),
|
||||||
'$edurl' => DI::l10n()->t('Link'),
|
'$edurl' => DI::l10n()->t('Link'),
|
||||||
'$edattach' => DI::l10n()->t('Link or Media'),
|
'$edattach' => DI::l10n()->t('Link or Media'),
|
||||||
|
'$edvideo' => DI::l10n()->t('Video'),
|
||||||
'$setloc' => DI::l10n()->t('Set your location'),
|
'$setloc' => DI::l10n()->t('Set your location'),
|
||||||
'$shortsetloc' => DI::l10n()->t('set location'),
|
'$shortsetloc' => DI::l10n()->t('set location'),
|
||||||
'$noloc' => DI::l10n()->t('Clear browser location'),
|
'$noloc' => DI::l10n()->t('Clear browser location'),
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<form class="comment-edit-form" style="display: block;" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
<form class="comment-edit-form" style="display: block;" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
||||||
<input type="hidden" name="type" value="{{$type}}" />
|
|
||||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
||||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
<input type="hidden" name="parent" value="{{$parent}}" />
|
||||||
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
|
|
||||||
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
|
||||||
<form class="comment-edit-form" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
|
||||||
<input type="hidden" name="type" value="{{$type}}" />
|
|
||||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
|
||||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
|
||||||
<input type="hidden" name="return" value="{{$return_path}}" />
|
|
||||||
<input type="hidden" name="jsreload" value="{{$jsreload}}" />
|
|
||||||
|
|
||||||
<div class="comment-edit-photo" id="comment-edit-photo-{{$id}}">
|
|
||||||
<a class="comment-edit-photo-link" href="{{$mylink}}" title="{{$mytitle}}"><img class="my-comment-photo" src="{{$myphoto}}" alt="{{$mytitle}}" title="{{$mytitle}}" /></a>
|
|
||||||
</div>
|
|
||||||
<div class="comment-edit-photo-end"></div>
|
|
||||||
<div id="mod-cmnt-wrap-{{$id}}" class="mod-cmnt-wrap" style="display:none">
|
|
||||||
<div id="mod-cmnt-name-lbl-{{$id}}" class="mod-cmnt-name-lbl">{{$lbl_modname}}</div>
|
|
||||||
<input type="text" id="mod-cmnt-name-{{$id}}" class="mod-cmnt-name" name="mod-cmnt-name" value="{{$modname}}" />
|
|
||||||
<div id="mod-cmnt-email-lbl-{{$id}}" class="mod-cmnt-email-lbl">{{$lbl_modemail}}</div>
|
|
||||||
<input type="text" id="mod-cmnt-email-{{$id}}" class="mod-cmnt-email" name="mod-cmnt-email" value="{{$modemail}}" />
|
|
||||||
<div id="mod-cmnt-url-lbl-{{$id}}" class="mod-cmnt-url-lbl">{{$lbl_modurl}}</div>
|
|
||||||
<input type="text" id="mod-cmnt-url-{{$id}}" class="mod-cmnt-url" name="mod-cmnt-url" value="{{$modurl}}" />
|
|
||||||
</div>
|
|
||||||
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" placeholder="{{$comment}}" onFocus="commentOpen(this,{{$id}});" onBlur="commentClose(this,{{$id}});"></textarea>
|
|
||||||
|
|
||||||
<div class="comment-edit-text-end"></div>
|
|
||||||
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-{{$id}}" style="display: none;">
|
|
||||||
<input type="submit" onclick="post_comment({{$id}}); return false;" id="comment-edit-submit-{{$id}}" class="comment-edit-submit" name="submit" value="{{$submit}}" />
|
|
||||||
<span onclick="preview_comment({{$id}});" id="comment-edit-preview-link-{{$id}}" class="fakelink">{{$preview}}</span>
|
|
||||||
<div id="comment-edit-preview-{{$id}}" class="comment-edit-preview" style="display:none;"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="comment-edit-end"></div>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
</div>
|
|
|
@ -5,7 +5,6 @@
|
||||||
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<form class="comment-edit-form" style="display: block;" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
<form class="comment-edit-form" style="display: block;" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
||||||
<input type="hidden" name="type" value="{{$type}}" />
|
|
||||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
||||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
<input type="hidden" name="parent" value="{{$parent}}" />
|
||||||
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
||||||
|
|
|
@ -1,61 +0,0 @@
|
||||||
|
|
||||||
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
|
||||||
<form class="comment-edit-form" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
|
||||||
<input type="hidden" name="type" value="{{$type}}" />
|
|
||||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
|
||||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
|
||||||
<input type="hidden" name="return" value="{{$return_path}}" />
|
|
||||||
<input type="hidden" name="jsreload" value="{{$jsreload}}" />
|
|
||||||
|
|
||||||
<div class="comment-edit-photo" id="comment-edit-photo-{{$id}}">
|
|
||||||
<a class="comment-edit-photo-link" href="{{$mylink}}" title="{{$mytitle}}"><img class="my-comment-photo" src="{{$myphoto}}" alt="{{$mytitle}}" title="{{$mytitle}}" /></a>
|
|
||||||
</div>
|
|
||||||
<div class="comment-edit-photo-end"></div>
|
|
||||||
<div id="mod-cmnt-wrap-{{$id}}" class="mod-cmnt-wrap" style="display:none">
|
|
||||||
<div id="mod-cmnt-name-lbl-{{$id}}" class="mod-cmnt-name-lbl">{{$lbl_modname}}</div>
|
|
||||||
<input type="text" id="mod-cmnt-name-{{$id}}" class="mod-cmnt-name" name="mod-cmnt-name" value="{{$modname}}" />
|
|
||||||
<div id="mod-cmnt-email-lbl-{{$id}}" class="mod-cmnt-email-lbl">{{$lbl_modemail}}</div>
|
|
||||||
<input type="text" id="mod-cmnt-email-{{$id}}" class="mod-cmnt-email" name="mod-cmnt-email" value="{{$modemail}}" />
|
|
||||||
<div id="mod-cmnt-url-lbl-{{$id}}" class="mod-cmnt-url-lbl">{{$lbl_modurl}}</div>
|
|
||||||
<input type="text" id="mod-cmnt-url-{{$id}}" class="mod-cmnt-url" name="mod-cmnt-url" value="{{$modurl}}" />
|
|
||||||
</div>
|
|
||||||
<ul class="comment-edit-bb-{{$id}}">
|
|
||||||
<li><a class="editicon boldbb shadow"
|
|
||||||
style="cursor: pointer;" title="{{$edbold}}"
|
|
||||||
onclick="insertFormatting('b', {{$id}});"></a></li>
|
|
||||||
<li><a class="editicon italicbb shadow"
|
|
||||||
style="cursor: pointer;" title="{{$editalic}}"
|
|
||||||
onclick="insertFormatting('i', {{$id}});"></a></li>
|
|
||||||
<li><a class="editicon underlinebb shadow"
|
|
||||||
style="cursor: pointer;" title="{{$eduline}}"
|
|
||||||
onclick="insertFormatting('u', {{$id}});"></a></li>
|
|
||||||
<li><a class="editicon quotebb shadow"
|
|
||||||
style="cursor: pointer;" title="{{$edquote}}"
|
|
||||||
onclick="insertFormatting('quote', {{$id}});"></a></li>
|
|
||||||
<li><a class="editicon codebb shadow"
|
|
||||||
style="cursor: pointer;" title="{{$edcode}}"
|
|
||||||
onclick="insertFormatting('code', {{$id}});"></a></li>
|
|
||||||
<li><a class="editicon imagebb shadow"
|
|
||||||
style="cursor: pointer;" title="{{$edimg}}"
|
|
||||||
onclick="insertFormatting('img', {{$id}});"></a></li>
|
|
||||||
<li><a class="editicon urlbb shadow"
|
|
||||||
style="cursor: pointer;" title="{{$edurl}}"
|
|
||||||
onclick="insertFormatting('url', {{$id}});"></a></li>
|
|
||||||
<li><a class="editicon videobb shadow"
|
|
||||||
style="cursor: pointer;" title="{{$edvideo}}"
|
|
||||||
onclick="insertFormatting('video', {{$id}});"></a></li>
|
|
||||||
</ul>
|
|
||||||
<div class="comment-edit-bb-end"></div>
|
|
||||||
<textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" placeholder="{{$comment}}" onFocus="commentOpen(this,{{$id}});cmtBbOpen({{$id}});" onBlur="commentClose(this,{{$id}});"></textarea>
|
|
||||||
|
|
||||||
<div class="comment-edit-text-end"></div>
|
|
||||||
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-{{$id}}" style="display: none;">
|
|
||||||
<input type="submit" onclick="post_comment({{$id}}); return false;" id="comment-edit-submit-{{$id}}" class="comment-edit-submit" name="submit" value="{{$submit}}" />
|
|
||||||
<span onclick="preview_comment({{$id}});" id="comment-edit-preview-link-{{$id}}" class="fakelink">{{$preview}}</span>
|
|
||||||
<div id="comment-edit-preview-{{$id}}" class="comment-edit-preview" style="display:none;"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="comment-edit-end"></div>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
</div>
|
|
|
@ -5,7 +5,6 @@
|
||||||
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}">
|
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<form class="comment-edit-form" data-item-id="{{$id}}" id="comment-edit-form-{{$id}}" action="item" method="post">
|
<form class="comment-edit-form" data-item-id="{{$id}}" id="comment-edit-form-{{$id}}" action="item" method="post">
|
||||||
<input type="hidden" name="type" value="{{$type}}" />
|
|
||||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
||||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
<input type="hidden" name="parent" value="{{$parent}}" />
|
||||||
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
||||||
<form class="comment-edit-form" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
<form class="comment-edit-form" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
||||||
<input type="hidden" name="type" value="{{$type}}" />
|
|
||||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
||||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
<input type="hidden" name="parent" value="{{$parent}}" />
|
||||||
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-{{$id}}" style="display: block;">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<form class="comment-edit-form" style="display: block;" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
<form class="comment-edit-form" style="display: block;" id="comment-edit-form-{{$id}}" action="item" method="post" onsubmit="post_comment({{$id}}); return false;">
|
||||||
<input type="hidden" name="type" value="{{$type}}" />
|
|
||||||
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
<input type="hidden" name="profile_uid" value="{{$profile_uid}}" />
|
||||||
<input type="hidden" name="parent" value="{{$parent}}" />
|
<input type="hidden" name="parent" value="{{$parent}}" />
|
||||||
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
{{*<!--<input type="hidden" name="return" value="{{$return_path}}" />-->*}}
|
||||||
|
|
Loading…
Reference in a new issue