Ticket #16918: 16918.diff
File 16918.diff, 431 bytes (added by , 14 years ago) |
---|
-
compat.php
1 <?php 2 /** 3 * WordPress implementation for PHP functions missing from older PHP versions. 4 * 5 * @package PHP 6 * @access private 7 */ 8 9 // If gettext isn't available 10 if ( !function_exists('_') ) { 11 function _($string) { 12 return $string; 13 } 14 }