mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 10:15:55 +00:00
login page: fix a warning if return is unset
This commit is contained in:
@@ -85,7 +85,7 @@
|
||||
|
||||
</script>
|
||||
|
||||
<?php $return = urlencode($_REQUEST['return'] ? $_REQUEST['return'] : with_trailing_slash(Config::make_self_url())) ?>
|
||||
<?php $return = urlencode(!empty($_REQUEST['return']) ? $_REQUEST['return'] : with_trailing_slash(Config::make_self_url())) ?>
|
||||
|
||||
<div class="container">
|
||||
|
||||
|
||||
Reference in New Issue
Block a user