correct indentation and visibility modifier

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@416 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
cweiske 2009-10-25 19:30:16 +00:00
parent c4ce5438a8
commit b38d876fad

View file

@ -544,7 +544,8 @@ class SemanticScuttle_Service_User extends SemanticScuttle_DbService
* *
* @see isSessionStable() * @see isSessionStable()
*/ */
function updateSessionStability() { public function updateSessionStability()
{
//find out if we have cookies enabled //find out if we have cookies enabled
if (!isset($_SESSION['sessionStable'])) { if (!isset($_SESSION['sessionStable'])) {
$_SESSION['sessionStable'] = 0; $_SESSION['sessionStable'] = 0;
@ -554,16 +555,17 @@ class SemanticScuttle_Service_User extends SemanticScuttle_DbService
} }
/** /**
* Tells you if the session is fresh or old. * Tells you if the session is fresh or old.
* If the session is fresh, it's the first page * If the session is fresh, it's the first page
* call with that session id. If the session is old, * call with that session id. If the session is old,
* we know that cookies (or session persistance) works * we know that cookies (or session persistance) works
* *
* @return boolean True if the * @return boolean True if the
* *
* @see updateSessionStability() * @see updateSessionStability()
*/ */
function isSessionStable() { publi function isSessionStable()
{
return $_SESSION['sessionStable'] == 1; return $_SESSION['sessionStable'] == 1;
} }