From 798f722b017aea45da7ecf14b266884ad838840e Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 29 Dec 2005 14:51:08 +0100 Subject: remove subselect from theme query, expand password range --- functions.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/functions.php b/functions.php index 11eb26796..26fcbbdcd 100644 --- a/functions.php +++ b/functions.php @@ -101,7 +101,7 @@ // db_query($link, "BEGIN"); $result = db_query($link, "SELECT feed_url,id, - substring(last_updated,1,19) as last_updated, + SUBSTRING(last_updated,1,19) AS last_updated, update_interval FROM ttrss_feeds WHERE owner_uid = '$user_id' ORDER BY last_updated DESC"); @@ -712,9 +712,9 @@ function make_password($length = 8) { $password = ""; - $possible = "0123456789bcdfghjkmnpqrstvwxyz"; - - $i = 0; + $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ"; + + $i = 0; while ($i < $length) { $char = substr($possible, mt_rand(0, strlen($possible)-1), 1); @@ -816,9 +816,10 @@ } function get_user_theme_path($link) { - $result = db_query($link, "SELECT theme_path FROM ttrss_themes - WHERE id = (SELECT theme_id FROM ttrss_users - WHERE id = " . $_SESSION["uid"] . ")"); + $result = db_query($link, "SELECT theme_path + FROM + ttrss_themes,ttrss_users + WHERE ttrss_themes.id = theme_id AND ttrss_users.id = " . $_SESSION["uid"]); if (db_num_rows($result) != 0) { return db_fetch_result($result, 0, "theme_path"); } else { -- cgit v1.2.3