mirror of
https://github.com/owncloud/bookmarks.git
synced 2024-11-29 04:24:11 +01:00
Undifined index
This prevents the undefined index notice to show up in the log.
This commit is contained in:
parent
a6d57d2a5c
commit
c522347d2c
@ -37,11 +37,11 @@ function bookmarklet($bookmarkleturl) {
|
||||
<div id="add_form_loading"><img src="<?php print_unescaped(OCP\image_path("bookmarks", "loading.gif")); ?>"> </div>
|
||||
</form>
|
||||
<p id="tag_filter" class="open">
|
||||
<input type="text" value="<?php p($_['req_tag']); ?>"/>
|
||||
<input type="text" value="<?php if(isset($_['req_tag'])) p($_['req_tag']); else ""; ?>"/>
|
||||
|
||||
|
||||
</p>
|
||||
<input type="hidden" id="bookmarkFilterTag" value="<?php p($_['req_tag']); ?>" />
|
||||
<input type="hidden" id="bookmarkFilterTag" value="<?php if(isset($_['req_tag'])) p($_['req_tag']); else ""; ?>" />
|
||||
<label id="tag_select_label"><?php p($l->t('Filterable Tags')); ?></label>
|
||||
</li>
|
||||
<li class="tag_list">
|
||||
|
Loading…
Reference in New Issue
Block a user