blob: fd7f21826378ab99bf5538b0bc767184b9f57c14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
/**
* Test for *.php5 capability in webserver
* Used by includes/templates/PHP4.php
*/
if ( version_compare( phpversion(), '5.0.0' ) >= 0 ) {
echo 'y'.'e'.'s';
}
?>
|