[php] Always use <?php to start .php file
A few files had just <? which only works when the short_open_tag option is on. It is on by default (at least in current PHP versions) and we explicitly tell PHP not to read php.ini, but the PHP docs recommended to avoid it, and PHP can be built with --disable-short-tags.
This commit is contained in:
parent
cc5395a669
commit
dee8b65823
2 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
<?
|
||||
<?php
|
||||
require "tests.php";
|
||||
|
||||
check::functions(array('is_python_builtin'));
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<?
|
||||
<?php
|
||||
|
||||
require "tests.php";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue