Skip to content

Commit

Permalink
Add temporary id to go back from query_story_page
Browse files Browse the repository at this point in the history
  • Loading branch information
cproensa authored and atrol committed Mar 4, 2018
1 parent 5a258e9 commit 4f9e78a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion query_store_page.php
Expand Up @@ -123,7 +123,11 @@
</form>
<div class="space-10"></div>
<form action="view_all_bug_page.php">
<?php # CSRF protection not required here - form does not result in modifications ?>
<?php # CSRF protection not required here - form does not result in modifications
if( filter_is_temporary( $t_filter ) ) {
echo '<input type="hidden" name="filter" value="' . filter_get_temporary_key( $t_filter ) . '" />';
}
?>
<input type="submit" class="btn btn-primary btn-white btn-round" value="<?php print lang_get( 'go_back' ); ?>" />
</form>
</div>
Expand Down

0 comments on commit 4f9e78a

Please sign in to comment.