1
0
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:
Oliver Kohl D.Sc. 2015-03-11 13:58:38 +01:00
parent a6d57d2a5c
commit c522347d2c

View File

@ -37,11 +37,11 @@ function bookmarklet($bookmarkleturl) {
<div id="add_form_loading"><img src="<?php print_unescaped(OCP\image_path("bookmarks", "loading.gif")); ?>"> </div> <div id="add_form_loading"><img src="<?php print_unescaped(OCP\image_path("bookmarks", "loading.gif")); ?>"> </div>
</form> </form>
<p id="tag_filter" class="open"> <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> </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> <label id="tag_select_label"><?php p($l->t('Filterable Tags')); ?></label>
</li> </li>
<li class="tag_list"> <li class="tag_list">