aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/ucp.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2011-06-15 08:02:00 +0200
committerIgor Wiedler <igor@wiedler.ch>2011-06-15 08:02:00 +0200
commit62a51e681e55a4af8c4f7d8a75458c608da74bf3 (patch)
tree953493b9626579dfce7eb6e50a59785dc47e777f /phpBB/ucp.php
parent5223f7558b646628e0f040f7e25506eed8cbdfcf (diff)
parentbc7aebe0fb10e3a3bf0606ec4b8ebc1e6f622592 (diff)
downloadforums-62a51e681e55a4af8c4f7d8a75458c608da74bf3.tar
forums-62a51e681e55a4af8c4f7d8a75458c608da74bf3.tar.gz
forums-62a51e681e55a4af8c4f7d8a75458c608da74bf3.tar.bz2
forums-62a51e681e55a4af8c4f7d8a75458c608da74bf3.tar.xz
forums-62a51e681e55a4af8c4f7d8a75458c608da74bf3.zip
Merge remote-tracking branch 'bantu/ticket/10219' into prep-release-3.0.9
* bantu/ticket/10219: [ticket/10219] Remove invalid and invisible character from web.config.
Diffstat (limited to 'phpBB/ucp.php')
0 files changed, 0 insertions, 0 deletions
commit info' class='commit-info'> authorPascal Rigaux <pixel@mandriva.com>2008-06-20 15:03:48 +0000 committerPascal Rigaux <pixel@mandriva.com>2008-06-20 15:03:48 +0000 commitf613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3 (patch) treeb96f4ab4bbffeece407cab22f5f12128acc3375d parent5440144abe73b09e36a83ad2c0cfe18ea294ae64 (diff)downloaddrakx-f613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3.tar
drakx-f613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3.tar.gz
drakx-f613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3.tar.bz2
drakx-f613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3.tar.xz
drakx-f613df5fc7450a1c5dfb4e4d34900d03d0e1e8f3.zip
- do not let authentication module (used for ask_user_and_root) mess window size
Diffstat
-rw-r--r--perl-install/authentication.pm3
-rw-r--r--perl-install/install/NEWS1
-rwxr-xr-xperl-install/standalone/drakauth3
3 files changed, 4 insertions, 3 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm
index cdffd02ea..ab4c896f8 100644
--- a/perl-install/authentication.pm
+++ b/perl-install/authentication.pm
@@ -3,9 +3,6 @@ package authentication; # $Id$
use common;
my $ccreds = 1;
-$::real_windowwidth = 700;
-$::real_windowheight = 600;
-
my ($authentication) = @_;
sub kinds {
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index e12a9b88f..5be43bfd0 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,5 +1,6 @@
- force back 75dpi to get back previous font sizes
- adapt to cooker file changes
+- do not let authentication module (used for ask_user_and_root) mess window size
Version 10.36 - 12 June 2008
diff --git a/perl-install/standalone/drakauth b/perl-install/standalone/drakauth
index 779976f52..56cf23447 100755
--- a/perl-install/standalone/drakauth
+++ b/perl-install/standalone/drakauth
@@ -9,6 +9,9 @@ use interactive;
use authentication;
use network::network;
+$::real_windowwidth = 700;
+$::real_windowheight = 600;
+
my $net = {};
network::network::read_net_conf($net);