Changeset 10051

Show
Ignore:
Timestamp:
11/29/08 18:36:23 (1 month ago)
Author:
afz
Message:

cosmetics

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/0.8/jaws/html/include/Jaws/Session/Web.php

    r9973 r10051  
    7676        $version = $GLOBALS['app']->Registry->Get('/config/cookie/version'); 
    7777        $name    = $name.'_'.md5($GLOBALS['app']->getSiteURL().'_'.$version); 
    78         setcookie($name, $value, (($minutes ==0)? 0 : time() +(60 * $minutes)), $GLOBALS['app']->getSiteURL(true, true) . '/'); 
     78        setcookie($name, $value, ($minutes == 0)? 0 : (time() + $minutes*60), $GLOBALS['app']->getSiteURL(true, true) . '/'); 
    7979    } 
    8080