diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2021-03-23 17:30:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 17:30:33 +0200 |
commit | 0d25e3869a1c0a859098965d6779d6875b787ac9 (patch) | |
tree | 970b22a1c4b3d2d1c9f7b03739481bd2236b0a7d /applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js | |
parent | f24d8d677c9f06160dc4c7121b6473ef164a04a8 (diff) | |
parent | d44302b3ac7a5f687c4a2bb6707cc3d922651f82 (diff) |
Merge pull request #4358 from plm/remove-rrd-path-triple-escape
luci-app-statistics: remove rrd path triple escape
Diffstat (limited to 'applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js')
-rw-r--r-- | applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js index 322eee137c..19e34e4bc6 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool.js @@ -376,7 +376,7 @@ return baseclass.extend({ function __def(source) { var inst = source.sname, - rrd = source.rrd.replace(/[\\:]/g, '\\$&'), + rrd = source.rrd, ds = source.ds || 'value'; _args.push( |