Repository: airavata-php-gateway Updated Branches: refs/heads/master e13b10591 -> da61c9867
Bug Fix. Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/da61c986 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/da61c986 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/da61c986 Branch: refs/heads/master Commit: da61c9867aec14a7a54e283908f7b0823c605262 Parents: e13b105 Author: Nipurn Doshi <[email protected]> Authored: Fri Oct 30 14:45:40 2015 -0400 Committer: Nipurn Doshi <[email protected]> Committed: Fri Oct 30 14:45:40 2015 -0400 ---------------------------------------------------------------------- app/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/da61c986/app/routes.php ---------------------------------------------------------------------- diff --git a/app/routes.php b/app/routes.php index e5e1aeb..138f010 100755 --- a/app/routes.php +++ b/app/routes.php @@ -219,7 +219,7 @@ Route::get( "pages/{theme_view}", function( $theme_view){ //In some cases, theme doesn't get loaded in session, so doing that here //as well incase it does not. if(! Session::has("theme")){ - Session::put("x", Config::get('pga_config.portal')['theme']); + Session::put("theme", Config::get('pga_config.portal')['theme']); } return View::make("pages", array("page" => $theme_view) ); });
