diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-04-03 18:27:45 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-04-03 18:27:45 +0200 |
commit | 38d0e93746f13b12af360eb614ba5353e93ecf83 (patch) | |
tree | aaaf5eba673804e30fc7670166f50b4a9c4553de /system/libraries/Session.php | |
parent | 2b39d9d1b837c92a0901ea9f0385172b763e18c8 (diff) |
Some very minor code style changes and comment fixes
Diffstat (limited to 'system/libraries/Session.php')
-rw-r--r-- | system/libraries/Session.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/system/libraries/Session.php b/system/libraries/Session.php index 3a80c1626..3515764ce 100644 --- a/system/libraries/Session.php +++ b/system/libraries/Session.php @@ -469,21 +469,21 @@ class CI_Session { { return $this->userdata; } - + // -------------------------------------------------------------------------- - + /** * Fetch all flashdata - * + * * @return array */ public function all_flashdata() { $out = array(); - + // loop through all userdata foreach ($this->all_userdata() as $key => $val) - { + { // if it contains flashdata, add it if (strpos($key, 'flash:old:') !== FALSE) { @@ -816,4 +816,4 @@ class CI_Session { } /* End of file Session.php */ -/* Location: ./system/libraries/Session.php */ +/* Location: ./system/libraries/Session.php */
\ No newline at end of file |