aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/template/twig/tokenparser/php.php
diff options
context:
space:
mode:
authorShitiz Garg <mail@dragooon.net>2014-06-18 15:38:49 +0530
committerShitiz Garg <mail@dragooon.net>2014-06-20 19:21:35 +0530
commit04e43e2087accb56c3afa2e74d7b246194342535 (patch)
tree2f77872d984f8f6a893711cdb6baa15f53700a2d /phpBB/phpbb/template/twig/tokenparser/php.php
parentd7edf31b955d311dda12aa13576227f9f2d1026a (diff)
downloadforums-04e43e2087accb56c3afa2e74d7b246194342535.tar
forums-04e43e2087accb56c3afa2e74d7b246194342535.tar.gz
forums-04e43e2087accb56c3afa2e74d7b246194342535.tar.bz2
forums-04e43e2087accb56c3afa2e74d7b246194342535.tar.xz
forums-04e43e2087accb56c3afa2e74d7b246194342535.zip
[ticket/12733] Fix spacing for block header in profilefield_twitter.php
PHPBB3-12733
Diffstat (limited to 'phpBB/phpbb/template/twig/tokenparser/php.php')
0 files changed, 0 insertions, 0 deletions
='n33' href='#n33'>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;