aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/config/db_text.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2014-08-10 18:06:55 +0200
committerMarc Alexander <admin@m-a-styles.de>2014-08-10 18:06:55 +0200
commitbc9b813ce704a0d1a10ea259024558773ae5d54b (patch)
tree8f32e9c9dfbad53d4a81a5babdc49bed9552d697 /phpBB/phpbb/config/db_text.php
parent2a5eca0391fc45a82224887bfb081dabd1b331da (diff)
parent838d4dc2c65e3e273b46cab314e9b50b441e2f2c (diff)
downloadforums-bc9b813ce704a0d1a10ea259024558773ae5d54b.tar
forums-bc9b813ce704a0d1a10ea259024558773ae5d54b.tar.gz
forums-bc9b813ce704a0d1a10ea259024558773ae5d54b.tar.bz2
forums-bc9b813ce704a0d1a10ea259024558773ae5d54b.tar.xz
forums-bc9b813ce704a0d1a10ea259024558773ae5d54b.zip
Merge pull request #2864 from rxu/ticket/12931
[ticket/12931] Fix general error on user registration
Diffstat (limited to 'phpBB/phpbb/config/db_text.php')
0 files changed, 0 insertions, 0 deletions
29 30 31 32 33 34 35 36
package install_steps_stdio; # $Id$

use diagnostics;
use strict;
use vars qw(@ISA);

@ISA = qw(install_steps_interactive interactive::stdio);

use common;
use interactive::stdio;
use install_steps_interactive;
use lang;

sub new($$) {
    my ($type, $o) = @_;

    (bless {}, ref($type) || $type)->SUPER::new($o);
}

sub charsetChanged {
    my ($o) = @_;
    lang::load_console_font($o->{locale});
}

sub enteringStep {
    my ($o, $step) = @_;
    print N("Entering step `%s'\n", translate($o->{steps}{$step}{text}));
    $o->SUPER::enteringStep($step);
}
sub leavingStep {
    my ($o, $step) = @_;
    $o->SUPER::leavingStep($step);
    print "--------\n";
}

1;