diff options
author | ivan <ivan> | 2007-02-08 08:19:37 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-02-08 08:19:37 +0000 |
commit | 3ccc60c2a0aca859a43210b8110757783f9f8ef1 (patch) | |
tree | b759e89776239981a008fb6c2d2bd30762f114de | |
parent | 83a6a677f62ca501011d9bac6371344dbb5a13b3 (diff) |
fix the popup progress bars, whew
-rw-r--r-- | FS/FS/CGI.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/FS/FS/CGI.pm b/FS/FS/CGI.pm index 15561d7cc..4c2693db8 100644 --- a/FS/FS/CGI.pm +++ b/FS/FS/CGI.pm @@ -230,7 +230,7 @@ sub rooturl { $url_string =~ s{ / - (browse|config|docs|edit|graph|misc|search|view|pref|rt) + (browse|config|docs|edit|graph|misc|search|view|pref|rt|elements) / (process/)? ([\w\-\.\/]+) @@ -238,6 +238,10 @@ sub rooturl { } {}x; + #elements because of progress-popup.html... + #XXX remove anything from elements that is called directly & prevent + #those pages from being served up + $url_string .= '/' unless $url_string =~ /\/$/; $url_string; |