Changeset 3471
- Timestamp:
- 01/23/2006 11:15:17 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions-compat.php
r3400 r3471 48 48 } 49 49 50 /* compatibility with PHP versions older than 4.3 */ 51 if ( !function_exists('file_get_contents') ) { 52 function file_get_contents( $file ) { 53 $file = file($file); 54 return !$file ? false : implode('', $file); 55 } 56 } 57 50 58 if (!defined('CASE_LOWER')) { 51 59 define('CASE_LOWER', 0);
Note: See TracChangeset
for help on using the changeset viewer.