From a4bf33cce20cae81a40842e4f079764fbfc2431c Mon Sep 17 00:00:00 2001 From: Joshua Sherman Date: Sat, 28 Dec 2013 16:21:24 -0500 Subject: [PATCH] If no request, assume 'home' module Eliminates the need to define a default module in the config. --- pickles.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pickles.php b/pickles.php index fc3c003..851c1d3 100644 --- a/pickles.php +++ b/pickles.php @@ -112,7 +112,7 @@ if (isset($config->pickles['sessions'])) if (!isset($_REQUEST['request'])) { - $_REQUEST['request'] = isset($config->pickles['module']) ? $config->pickles['module'] : ''; + $_REQUEST['request'] = 'home'; } // }}}