Changeset 748
- Timestamp:
- 10/11/2007 05:52:35 AM (21 months ago)
- Files:
-
- 1 modified
-
branches/1.1.6.4/libs/Wakka.class.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1.6.4/libs/Wakka.class.php
r746 r748 466 466 * 467 467 * I suspect PHP's htmlspecialchars() is working at the byte-value level and 468 * thus _needs_ to know (or ass sume) a character set because the special468 * thus _needs_ to know (or assume) a character set because the special 469 469 * characters to be replaced could exist at different code points in 470 470 * different character sets. (If indeed htmlspecialchars() works at … … 1170 1170 function FormClose() 1171 1171 { 1172 return "</form>\n"; 1172 $result = '</form>'."\n"; 1173 return $result; 1173 1174 } 1174 1175 … … 1601 1602 if ((!$this->GetUser() && isset($_COOKIE["wikka_user_name"])) && ($user = $this->LoadUser($_COOKIE["wikka_user_name"], $_COOKIE["wikka_pass"]))) 1602 1603 { 1603 //Old cookies : delete them1604 //Old cookies : delete them 1604 1605 SetCookie('wikka_user_name', "", 1, "/"); 1605 1606 $_COOKIE['wikka_user_name'] = "";