aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/driver/sqlite3.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-01-31 20:08:39 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-01-31 20:08:39 +0100
commit63fd2159e015a36c778115c943cca2d11bcb46e1 (patch)
tree1670944e1e309a48735d4e7a6aa434b3fc27314a /phpBB/phpbb/db/driver/sqlite3.php
parent0d93af8324aeb99427372284c5cf4e3860d3b93c (diff)
parent43cdb35b848b914d11cc1ccb57f84497a012db86 (diff)
downloadforums-63fd2159e015a36c778115c943cca2d11bcb46e1.tar
forums-63fd2159e015a36c778115c943cca2d11bcb46e1.tar.gz
forums-63fd2159e015a36c778115c943cca2d11bcb46e1.tar.bz2
forums-63fd2159e015a36c778115c943cca2d11bcb46e1.tar.xz
forums-63fd2159e015a36c778115c943cca2d11bcb46e1.zip
Merge pull request #4149 from CHItA/ticket/14438
[ticket/14438] Allign progressbar text to center
Diffstat (limited to 'phpBB/phpbb/db/driver/sqlite3.php')
0 files changed, 0 insertions, 0 deletions
a id='n28' href='#n28'>28 29 30 31 32 33 34 35 36
package install::steps_stdio; # $Id: steps_stdio.pm 215411 2007-04-25 12:26:16Z pixel $

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;