From 26f071d6cca5c3a8b9f3b18aa010f2d98236f804 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Fri, 3 Jun 2011 11:41:41 -0700 Subject: Cleaned up old file --- htdocs/moderate/src/accounts.inc.php | 67 ------------------------------------ 1 file changed, 67 deletions(-) delete mode 100644 htdocs/moderate/src/accounts.inc.php diff --git a/htdocs/moderate/src/accounts.inc.php b/htdocs/moderate/src/accounts.inc.php deleted file mode 100644 index fac6c7c..0000000 --- a/htdocs/moderate/src/accounts.inc.php +++ /dev/null @@ -1,67 +0,0 @@ -fetchAssocRow($query); - - } catch (Cif_Database_Exception $e) { - $results = false; - } - - return $results; -} - -function updatePassword($id, $password) { - $db = getDatabase(); - - $row['password'] = sha1($password); - - $db->update('jpm_users', $row, "WHERE `id`='$id'"); -} - -function getAccounts($s) { - $query = "SELECT * FROM jpm_users"; - - if (!is_null($s)) { - $s = addslashes($s); - $query .= " WHERE name LIKE '%$s%' OR email LIKE '%$s%'"; - } - - $query .= " ORDER BY name"; - - $db = getDatabase(); - - $results = array(); - - try { - $results = $db->fetchAssocRows($query); - - } catch (Cif_Database_Exception $e) { - $results = array(); - } - - return $results; -} - -function generatePassword() { - $alphabet = "ABCDEFGHJKLMNPQRSTUVWXYZabcdefghjkmnpqrstuvwxyz123456789!@#$%*()"; - $length = strlen($alphabet); - - $password = ''; - for ($i = 0; $i < 8; $i++) { - $pos = rand(0, $length - 1); - $password .= substr($alphabet, $pos, 1); - } - - return $password; -} - -?> -- cgit v1.2.3