Skip to content

Commit

Permalink
[jan] Don't ignore 'initial_page' registry setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Jun 6, 2016
1 parent ff31343 commit 16922b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions ingo/docs/CHANGES
Expand Up @@ -2,6 +2,7 @@
v3.2.11-git
-----------

[jan] Don't ignore 'initial_page' registry setting.


-------
Expand Down
3 changes: 3 additions & 0 deletions ingo/lib/Ingo.php
Expand Up @@ -200,6 +200,9 @@ static public function getInitialPage()
return Horde::url('smartmobile.php');

default:
if ($initial_page = $registry->get('initial_page')) {
return Horde::url($registry->get('webroot') . '/' . $initial_page);
}
return Ingo_Basic_Filters::url();
}
}
Expand Down
4 changes: 2 additions & 2 deletions ingo/package.xml
Expand Up @@ -33,7 +33,7 @@
</stability>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
*
* [jan] Don&apos;t ignore &apos;initial_page&apos; registry setting.
</notes>
<contents>
<dir baseinstalldir="/" name="/">
Expand Down Expand Up @@ -1659,7 +1659,7 @@
<date>2016-04-05</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
*
* [jan] Don&apos;t ignore &apos;initial_page&apos; registry setting.
</notes>
</release>
</changelog>
Expand Down

0 comments on commit 16922b0

Please sign in to comment.