~ubuntu-branches/ubuntu/vivid/awstats/vivid

« back to all changes in this revision

Viewing changes to debian/patches/1019_allow_frame_resize.patch

  • Committer: Package Import Robot
  • Author(s): Sergey B Kirpichev
  • Date: 2011-12-28 17:14:12 UTC
  • Revision ID: package-import@ubuntu.com-20111228171412-jwh1qo503o5jnu53
Tags: 7.0~dfsg-5
* Add MAILTO=root to awstats.cron.d (Closes: #652665, thanks to
  Dominique Brazziel)
* Add todo for #302210
* 1019_allow_frame_resize.patch: Allow resize of mainleft/right frames
  (Closes: #293218)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: Allow resize of mainleft/right frames.
 
2
Author: Sergey B Kirpichev <skirpichev@gmail.com>
 
3
Debian-Bug: http://bugs.debian.org/293218
 
4
 
 
5
---
 
6
 wwwroot/cgi-bin/awstats.pl |    4 ++--
 
7
 1 file changed, 2 insertions(+), 2 deletions(-)
 
8
 
 
9
--- a/wwwroot/cgi-bin/awstats.pl
 
10
+++ b/wwwroot/cgi-bin/awstats.pl
 
11
@@ -17153,10 +17153,10 @@
 
12
        print "<frameset cols=\"$FRAMEWIDTH,*\">\n";
 
13
        print "<frame name=\"mainleft\" src=\""
 
14
          . XMLEncode("$AWScript${NewLinkParams}framename=mainleft")
 
15
-         . "\" noresize=\"noresize\" frameborder=\"0\" />\n";
 
16
+         . "\" frameborder=\"0\" />\n";
 
17
        print "<frame name=\"mainright\" src=\""
 
18
          . XMLEncode("$AWScript${NewLinkParams}framename=mainright")
 
19
-         . "\" noresize=\"noresize\" scrolling=\"yes\" frameborder=\"0\" />\n";
 
20
+         . "\" scrolling=\"yes\" frameborder=\"0\" />\n";
 
21
        print "<noframes><body>";
 
22
        print "Your browser does not support frames.<br />\n";
 
23
        print "You must set AWStats UseFramesWhenCGI parameter to 0\n";