aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/db/migrate.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-12-28 14:34:18 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-12-28 14:34:18 +0100
commit1f1835ede00b67f1de94df2018ee281143224a22 (patch)
treea409740a0c888fb35919a3e6ca03c782ee2eeee6 /phpBB/phpbb/console/command/db/migrate.php
parentd90680d685cf3bf5e33d834ef477dd0855946544 (diff)
parente90e3ec3687b8397a8a6b2feb6f33bb1850c60be (diff)
downloadforums-1f1835ede00b67f1de94df2018ee281143224a22.tar
forums-1f1835ede00b67f1de94df2018ee281143224a22.tar.gz
forums-1f1835ede00b67f1de94df2018ee281143224a22.tar.bz2
forums-1f1835ede00b67f1de94df2018ee281143224a22.tar.xz
forums-1f1835ede00b67f1de94df2018ee281143224a22.zip
Merge pull request #5066 from marc1706/ticket/15179
[ticket/15179] Update dependencies for 3.2.x
Diffstat (limited to 'phpBB/phpbb/console/command/db/migrate.php')
0 files changed, 0 insertions, 0 deletions
d colspan='2' class='sha1'>85130b92ccd6a286f5c23bcd4fc90ea29b3b3649 (patch) treea29a4afa917946c333cfb5b6d11b77b25b174977 /perl-install/standalone.pm parentd7a404163ee60002025bdb6c6635e7f9f49c1dde (diff)downloaddrakx-85130b92ccd6a286f5c23bcd4fc90ea29b3b3649.tar
drakx-85130b92ccd6a286f5c23bcd4fc90ea29b3b3649.tar.gz
drakx-85130b92ccd6a286f5c23bcd4fc90ea29b3b3649.tar.bz2
drakx-85130b92ccd6a286f5c23bcd4fc90ea29b3b3649.tar.xz
drakx-85130b92ccd6a286f5c23bcd4fc90ea29b3b3649.zip
(bug_handler) prevent looping if drakbug crashes
Diffstat (limited to 'perl-install/standalone.pm')
-rw-r--r--perl-install/standalone.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm
index 32255665e..721a22bd0 100644
--- a/perl-install/standalone.pm
+++ b/perl-install/standalone.pm
@@ -189,6 +189,10 @@ sub bug_handler {
return if $error && $^S;
$error .= common::backtrace() if $error;
my $progname = $0;
+ if ($progname =~ /drakbug/) {
+ warn $error;
+ exit(1);
+ }
$progname =~ s|.*/||;
exec('drakbug', if_($error, '--error', $error), '--incident', $progname,);
}