summaryrefslogtreecommitdiff
path: root/p/scripts
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-01-21 22:37:17 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2015-01-21 22:37:17 +0100
commit964a768bc384425e45ae953bff0f6f757078e7d6 (patch)
treea79e0cd88ba44993768c7af6fa3bb5abe306b179 /p/scripts
parent22d7e0d638b91063741fe82fe77822b1d7d5be1d (diff)
! encoding problem
https://github.com/FreshRSS/FreshRSS/commit/211569ef85f50891035e3e2645ec0c87badec1e1#commitcomment-9384719
Diffstat (limited to 'p/scripts')
-rw-r--r--p/scripts/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js
index 0561097e5..596ea2c32 100644
--- a/p/scripts/main.js
+++ b/p/scripts/main.js
@@ -519,7 +519,7 @@ function init_column_categories() {
if ($(this).nextAll('.dropdown-menu').length === 0) {
var feed_id = $(this).closest('.item').attr('id').substr(2),
feed_web = $(this).data('fweb'),
- template = $('#feed_config_template').html().replace(/!!!!!!/g, feed_id).replace('http://example.net/', feed_web);
+ template = $('#feed_config_template').html().replace(/______/g, feed_id).replace('http://example.net/', feed_web);
$(this).attr('href', '#dropdown-' + feed_id).prev('.dropdown-target').attr('id', 'dropdown-' + feed_id).parent().append(template);
}
});