Authored by hf

fixes bug to partner login

@@ -317,7 +317,6 @@ class AbstractAction extends Controller_Abstract @@ -317,7 +317,6 @@ class AbstractAction extends Controller_Abstract
317 } 317 }
318 } 318 }
319 } 319 }
320 - var_dump($useSession, '+++', $this->_uid);  
321 return $this->_uid; 320 return $this->_uid;
322 } 321 }
323 322
@@ -36,5 +36,12 @@ class ErrorController extends AbstractAction @@ -36,5 +36,12 @@ class ErrorController extends AbstractAction
36 'showDownloadApp' => true, 36 'showDownloadApp' => true,
37 )); 37 ));
38 } 38 }
  39 +
  40 + public function testAction()
  41 + {
  42 + $uid = $this->getUid(true);
  43 + $session = $this->getSession('_TOKEN');
  44 + var_dump($uid, '+++', $session, APPLICATION_ENV);
  45 + }
39 46
40 } 47 }