Skip to content

Commit

Permalink
removing check for PHP SHORT_OPEN_TAGS, because from PHP 5.4.0 on it'…
Browse files Browse the repository at this point in the history
…s always available
  • Loading branch information
jakoch committed Aug 16, 2012
1 parent 2379cac commit 48c1df4
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion Installation/Languages/English.php
Expand Up @@ -95,7 +95,6 @@ public function __construct()
$this->language['OPEN_BASEDIR'] = 'OPEN_BASEDIR';
$this->language['MAGIC_QUOTES_GPC'] = 'Magic Quotes GPC';
$this->language['MAGIC_QUOTES_RUNTIME'] = 'Magic Quotes Runtime';
$this->language['SHORT_OPEN_TAG'] = 'Short Open Tags';
$this->language['OUTPUT_BUFFERING'] = 'Output Buffering';
$this->language['XSLT_PROCESSOR'] = 'XSLT Processor';
$this->language['EXTENSION_HASH'] = 'PHP Extension: Hash';
Expand Down
1 change: 0 additions & 1 deletion Installation/Languages/German.php
Expand Up @@ -95,7 +95,6 @@ public function __construct()
$this->language['OPEN_BASEDIR'] = 'OPEN_BASEDIR';
$this->language['MAGIC_QUOTES_GPC'] = 'Magic Quotes GPC';
$this->language['MAGIC_QUOTES_RUNTIME'] = 'Magic Quotes Runtime';
$this->language['SHORT_OPEN_TAG'] = 'Kurzversion öffnender PHP-Tags';
$this->language['OUTPUT_BUFFERING'] = 'Output Buffering';
$this->language['XSLT_PROCESSOR'] = 'XSLT-Prozessor';
$this->language['EXTENSION_HASH'] = 'PHP Erweiterung: Hash';
Expand Down
1 change: 0 additions & 1 deletion Installation/Languages/Italian.php
Expand Up @@ -95,7 +95,6 @@ public function __construct()
$this->language['OPEN_BASEDIR'] = 'OPEN_BASEDIR';
$this->language['MAGIC_QUOTES_GPC'] = 'Magic Quotes GPC';
$this->language['MAGIC_QUOTES_RUNTIME'] = 'Magic Quotes Runtime';
$this->language['SHORT_OPEN_TAG'] = 'Short Open Tags';
$this->language['OUTPUT_BUFFERING'] = 'Output Buffering';
$this->language['XSLT_PROCESSOR'] = 'XSLT Processor';
$this->language['EXTENSION_HASH'] = 'Estensione PHP: Hash';
Expand Down
6 changes: 0 additions & 6 deletions Installation/view/step2.php
Expand Up @@ -256,12 +256,6 @@ function check_temporary_dir()
$recommended['magic_quotes_runtime']['actual'] = get_php_setting('magic_quotes_runtime',false,'string');
$recommended['magic_quotes_runtime']['status'] = get_php_setting('magic_quotes_runtime',false,'img');

// Checking short open tag
$recommended['short_open_tag']['label'] = $language['SHORT_OPEN_TAG'];
$recommended['short_open_tag']['expected'] = SETTING_EXPECTED_OFF;
$recommended['short_open_tag']['actual'] = get_php_setting('short_open_tag',false,'string');
$recommended['short_open_tag']['status'] = get_php_setting('short_open_tag',false,'img');

// Checking output_buffering
$recommended['output_buffering']['label'] = $language['OUTPUT_BUFFERING'];
$recommended['output_buffering']['expected'] = SETTING_EXPECTED_OFF;
Expand Down

0 comments on commit 48c1df4

Please sign in to comment.