JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added dwt_get(), messages only display once
[wfpl.git] / session.php
index 4efec20..c99ba3f 100644 (file)
@@ -48,7 +48,7 @@ if(!isset($GLOBALS['wfpl_db_handle'])) {
 
 # generate a new random 16-character string
 function session_generate_key() {
-       $character_set = "abcdefghijklmnopqrstuvwqyzABCDEFGHIJKLMNOPQRSTUVWQYZ0123456789";
+       $character_set = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
     $id = "                ";
 
        # PHP 4.2.0 and up seed the random number generator for you.