summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/controllers/SessionController.php
diff options
context:
space:
mode:
authormichael pereira2011-04-04 17:12:48 +0200
committermichael pereira2011-04-04 17:12:48 +0200
commit8ceb7bad18f257127ad5790a9c0ec157d7e03f4d (patch)
treea83b3d35741914087db7eb8c169c1f5c3b0bd02a /application/modules/dev/controllers/SessionController.php
parentgetRessoources bei Play werden angezeigt (diff)
downloadpbs2-8ceb7bad18f257127ad5790a9c0ec157d7e03f4d.tar.gz
pbs2-8ceb7bad18f257127ad5790a9c0ec157d7e03f4d.tar.xz
pbs2-8ceb7bad18f257127ad5790a9c0ec157d7e03f4d.zip
WICHTIG findBy Methode geändert & alles angepasst, siehe Ticket
Diffstat (limited to 'application/modules/dev/controllers/SessionController.php')
-rw-r--r--application/modules/dev/controllers/SessionController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/modules/dev/controllers/SessionController.php b/application/modules/dev/controllers/SessionController.php
index 9686d1d..87a7e9c 100644
--- a/application/modules/dev/controllers/SessionController.php
+++ b/application/modules/dev/controllers/SessionController.php
@@ -50,7 +50,7 @@ class dev_SessionController extends Zend_Controller_Action
try{
$uniqid = $this->getUniqueCode(10);
$sm = new Application_Model_SessionMapper();
- while(count($sm->findBy('alphasessionID',$uniqid))>0){
+ while(count($sm->findBy(array('alphasessionID' => $uniqid),true))>0){
$uniqid = $this->getUniqueCode(16);
}