1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-25 11:57:42 +02:00

flush cache on feedEditSave

This commit is contained in:
Andrew Dolgov 2010-01-19 18:22:35 +03:00
parent 8ab4da5f8b
commit 641444d3d7
2 changed files with 4 additions and 4 deletions

View File

@ -858,7 +858,7 @@ function feedEditSave() {
dlg_frefresh_callback(transport); dlg_frefresh_callback(transport);
} }); } });
cache_flush();
closeInfoBox(); closeInfoBox();
return false; return false;
@ -952,12 +952,12 @@ function collapse_feedlist() {
} }
function viewModeChanged() { function viewModeChanged() {
cache_empty(); cache_flush();
return viewCurrentFeed(0, '') return viewCurrentFeed(0, '')
} }
function viewLimitChanged() { function viewLimitChanged() {
cache_empty(); cache_flush();
return viewCurrentFeed(0, '') return viewCurrentFeed(0, '')
} }

View File

@ -1863,7 +1863,7 @@ function cache_expire() {
} }
} }
function cache_empty() { function cache_flush() {
article_cache = new Array(); article_cache = new Array();
} }