From 54a60e1a0001da296b73eee86c27babdb9abd4c3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 26 Nov 2005 07:40:47 +0100 Subject: [PATCH] get_user_theme_path() --- functions.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/functions.php b/functions.php index de164c71..89bc07d8 100644 --- a/functions.php +++ b/functions.php @@ -709,4 +709,15 @@ return $str; } } + + 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"] . ")"); + if (db_num_rows($result) != 0) { + return db_fetch_result($result, 0, "theme_path"); + } else { + return null; + } + } ?> -- 2.39.2