Changeset 3471
- Timestamp:
- 01/23/06 23:15:17 (3 years ago)
- Files:
-
- trunk/wp-includes/functions-compat.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
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);
