From afb12ed0d0df0d1f2bbbb8b2fb54d245da52eb3d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 21 Dec 2009 16:33:27 +0300 Subject: prepare login redirect for mobile/classic --- functions.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/functions.php b/functions.php index 9fba3c83c..08b4c4b81 100644 --- a/functions.php +++ b/functions.php @@ -4508,11 +4508,16 @@ return true; } - function render_login_form($link, $mobile = false) { - if (!$mobile) { + function render_login_form($link, $mobile = 0) { + switch ($mobile) { + case 0: require_once "login_form.php"; - } else { + break; + case 1: require_once "mobile/login_form.php"; + break; + case 2: + require_once "mobile/classic/login_form.php"; } } -- cgit v1.2.3