Closed ghost closed 12 years ago
The file /sacy/cssmin.php uses the php short tag <? instead of <?php to open the file. This will cause the file to be included as text and not compiled when used on a server where the php ini directive short_open_tag is set to "Off".
<?
<?php
short_open_tag
Simple change to <?php.
also fixed in your pull request. Thanks!
The file /sacy/cssmin.php uses the php short tag
<?
instead of<?php
to open the file. This will cause the file to be included as text and not compiled when used on a server where the php ini directiveshort_open_tag
is set to "Off".Simple change to
<?php
.