get_user_theme_path: cache data

master
Andrew Dolgov 15 years ago
parent c3b7b797f5
commit 6ba506224e

@ -1999,12 +1999,18 @@
$theme_id = 1; $theme_id = 1;
} }
$result = db_query($link, "SELECT theme_path if (!$_SESSION["theme_path"][$theme_id]) {
FROM ttrss_themes WHERE id = '$theme_id'"); $result = db_query($link, "SELECT theme_path
if (db_num_rows($result) != 0) { FROM ttrss_themes WHERE id = '$theme_id'");
return db_fetch_result($result, 0, "theme_path"); if (db_num_rows($result) != 0) {
$theme = db_fetch_result($result, 0, "theme_path");
$_SESSION["theme_path"][$theme_id] = $theme;
return $theme;
} else {
return null;
}
} else { } else {
return null; return $_SESSION["theme_path"][$theme_id];
} }
} }

Loading…
Cancel
Save