1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-08 07:39:14 +00:00

remove cache_content remnants

This commit is contained in:
Andrew Dolgov
2013-03-16 16:11:58 +04:00
parent cc38c8e549
commit 8349a32e75
4 changed files with 2 additions and 40 deletions

View File

@@ -856,8 +856,6 @@ class Pref_Feeds extends Handler_Protected {
db_escape_string($_POST["include_in_digest"]));
$cache_images = checkbox_to_sql_bool(
db_escape_string($_POST["cache_images"]));
$cache_content = checkbox_to_sql_bool(
db_escape_string($_POST["cache_content"]));
$always_display_enclosures = checkbox_to_sql_bool(
db_escape_string($_POST["always_display_enclosures"]));
@@ -889,7 +887,6 @@ class Pref_Feeds extends Handler_Protected {
auth_pass = '$auth_pass',
private = $private,
cache_images = $cache_images,
cache_content = $cache_content,
include_in_digest = $include_in_digest,
always_display_enclosures = $always_display_enclosures,
mark_unread_on_update = $mark_unread_on_update
@@ -955,10 +952,6 @@ class Pref_Feeds extends Handler_Protected {
$qpart = "cache_images = $cache_images";
break;
case "cache_content":
$qpart = "cache_content = $cache_content";
break;
case "cat_id":
$qpart = $category_qpart_nocomma;
break;