aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/type
diff options
context:
space:
mode:
authorsepich2014-03-10 11:06:47 -0700
committerPim van den Berg2014-03-21 23:07:03 +0100
commit82623b7658882006c7a08c4a8330d7ddab054a37 (patch)
tree5020c19f0d360fd3e4d4adb64f4e666feb891cab /type
parenthost.php: remove immediate end tag in fieldset (diff)
downloadapt-panopticon_cgp-82623b7658882006c7a08c4a8330d7ddab054a37.zip
apt-panopticon_cgp-82623b7658882006c7a08c4a8330d7ddab054a37.tar.gz
apt-panopticon_cgp-82623b7658882006c7a08c4a8330d7ddab054a37.tar.bz2
apt-panopticon_cgp-82623b7658882006c7a08c4a8330d7ddab054a37.tar.xz
mod_rewrite final cleanup
Diffstat (limited to 'type')
-rw-r--r--type/Default.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/type/Default.class.php b/type/Default.class.php
index 5e19e73..c4fa8a9 100644
--- a/type/Default.class.php
+++ b/type/Default.class.php
@@ -122,9 +122,9 @@ class Type_Default {
122 122
123 function parse_filename($file) { 123 function parse_filename($file) {
124 if ($this->graph_type == 'canvas') { 124 if ($this->graph_type == 'canvas') {
125 $file = 'rrd.php/' . str_replace($this->datadir . '/', '', $file); 125 $file = str_replace($this->datadir . '/', '', $file);
126 # rawurlencode all but / 126 # rawurlencode all but /
127 $file = str_replace('%2F', '/', rawurlencode($file)); 127 $file = 'rrd.php?' . str_replace('%2F', '/', rawurlencode($file));
128 } else { 128 } else {
129 # escape characters 129 # escape characters
130 $file = str_replace(array(' ', '(', ')'), array('\ ', '\(', '\)'), $file); 130 $file = str_replace(array(' ', '(', ')'), array('\ ', '\(', '\)'), $file);