aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/feed/ssh:/git@git.mageia.org/software/drakx
diff options
context:
space:
mode:
authorhanakin <midaym@gmail.com>2014-09-20 16:55:20 +0200
committerhanakin <midaym@gmail.com>2014-09-20 16:55:20 +0200
commit8b8e0654414a66915c9e0c8dffb45c0718608218 (patch)
tree1677e2ee8d0d40f016f1a031fa467efa296aa74b /phpBB/phpbb/feed/ssh:/git@git.mageia.org/software/drakx
parente3eff2a976fe68fe94dbdbc016c7e2781f39d6e1 (diff)
downloadforums-8b8e0654414a66915c9e0c8dffb45c0718608218.tar
forums-8b8e0654414a66915c9e0c8dffb45c0718608218.tar.gz
forums-8b8e0654414a66915c9e0c8dffb45c0718608218.tar.bz2
forums-8b8e0654414a66915c9e0c8dffb45c0718608218.tar.xz
forums-8b8e0654414a66915c9e0c8dffb45c0718608218.zip
[ticket/13080] Fix mediaqueries formating
open { are should not to be on new lines for media queries per spec, causes code highlight issues in reputible code editors PHPBB3-13080
Diffstat (limited to 'phpBB/phpbb/feed/ssh:/git@git.mageia.org/software/drakx')
0 files changed, 0 insertions, 0 deletions
00 commit814cb567cbc85a2dd2f36dd00cf353b7f9a3d785 (patch) tree89334d47dbc3cd94ad14190e1d28fd337347219f /perl-install/interactive.pm parent8126e3d00da88ec7c042979bb019c4e479e15e44 (diff)downloaddrakx-814cb567cbc85a2dd2f36dd00cf353b7f9a3d785.tar
drakx-814cb567cbc85a2dd2f36dd00cf353b7f9a3d785.tar.gz
drakx-814cb567cbc85a2dd2f36dd00cf353b7f9a3d785.tar.bz2
drakx-814cb567cbc85a2dd2f36dd00cf353b7f9a3d785.tar.xz
drakx-814cb567cbc85a2dd2f36dd00cf353b7f9a3d785.zip
when standalone, use the name of the program for the window title
Diffstat (limited to 'perl-install/interactive.pm')
-rw-r--r--perl-install/interactive.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/interactive.pm b/perl-install/interactive.pm
index 6d8f3b73b..bb3d63a4f 100644
--- a/perl-install/interactive.pm
+++ b/perl-install/interactive.pm
@@ -314,6 +314,9 @@ sub ask_from_normalize {
}
} @$l;
+ if (!$common->{title} && $::isStandalone) {
+ ($common->{title} = $0) =~ s|.*/||;
+ }
$common->{advanced_label} ||= _("Advanced");
$common->{advanced_label_close} ||= _("Basic");
$common->{$_} = [ deref($common->{$_}) ] foreach qw(messages advanced_messages);