diff options
| author | michael pereira | 2011-04-04 17:12:48 +0200 |
|---|---|---|
| committer | michael pereira | 2011-04-04 17:12:48 +0200 |
| commit | 8ceb7bad18f257127ad5790a9c0ec157d7e03f4d (patch) | |
| tree | a83b3d35741914087db7eb8c169c1f5c3b0bd02a /application/modules/dev/controllers/SessionController.php | |
| parent | getRessoources bei Play werden angezeigt (diff) | |
| download | pbs2-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.php | 2 |
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); } |
