Changeset 944
- Timestamp:
- 02/25/2008 05:32:23 AM (3 years ago)
- Files:
-
- 1 modified
-
trunk/libs/Wakka.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/libs/Wakka.class.php
r941 r944 2503 2503 /** 2504 2504 * Get the value of a Cookie. 2505 * 2506 * @uses Wakka::GetConfigValue() 2505 * 2506 * @param string $name Name of the cookie, used in {@link Wakka::SetPersistentCookie()} and {@link Wakka::SetSessionCookie()} 2507 * @return mixed value of the cookie, or the boolean FALSE if the cookie is not present. 2508 * @uses Config::$wiki_suffix 2507 2509 */ 2508 2510 function getWikkaCookie($name) … … 2518 2520 } 2519 2521 return $cookie; 2522 } 2523 /** 2524 * @deprecated deprecated since version 1.1.7 2525 * @see {@link Wakka::getWikkaCookie()} 2526 * @uses Wakka::getWikkaCookie() 2527 */ 2528 function GetCookie($name) 2529 { 2530 return $this->getWikkaCookie($name); 2520 2531 } 2521 2532