aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/SemanticScuttle/Service/User.php24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/SemanticScuttle/Service/User.php b/src/SemanticScuttle/Service/User.php
index f44073d..bf44c4b 100644
--- a/src/SemanticScuttle/Service/User.php
+++ b/src/SemanticScuttle/Service/User.php
@@ -544,7 +544,8 @@ class SemanticScuttle_Service_User extends SemanticScuttle_DbService
*
* @see isSessionStable()
*/
- function updateSessionStability() {
+ public function updateSessionStability()
+ {
//find out if we have cookies enabled
if (!isset($_SESSION['sessionStable'])) {
$_SESSION['sessionStable'] = 0;
@@ -554,16 +555,17 @@ class SemanticScuttle_Service_User extends SemanticScuttle_DbService
}
/**
- * Tells you if the session is fresh or old.
- * If the session is fresh, it's the first page
- * call with that session id. If the session is old,
- * we know that cookies (or session persistance) works
- *
- * @return boolean True if the
- *
- * @see updateSessionStability()
- */
- function isSessionStable() {
+ * Tells you if the session is fresh or old.
+ * If the session is fresh, it's the first page
+ * call with that session id. If the session is old,
+ * we know that cookies (or session persistance) works
+ *
+ * @return boolean True if the
+ *
+ * @see updateSessionStability()
+ */
+ publi function isSessionStable()
+ {
return $_SESSION['sessionStable'] == 1;
}