Fix logo link in wp_die(). Props Sewar. fixes #3138

git-svn-id: http://svn.automattic.com/wordpress/trunk@4194 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan
2006-09-18 23:40:19 +00:00
parent 510c17a977
commit 5dc154c1e2
5 changed files with 50 additions and 1 deletions

View File

@@ -12,6 +12,9 @@ class WP_Locale {
var $meridiem;
var $text_direction = '';
var $locale_vars = array('text_direction');
function init() {
// The Weekdays
$this->weekday[0] = __('Sunday');
@@ -83,6 +86,21 @@ class WP_Locale {
$this->meridiem['pm'] = __('pm');
$this->meridiem['AM'] = __('AM');
$this->meridiem['PM'] = __('PM');
$this->_load_locale_data();
}
function _load_locale_data() {
$locale = get_locale();
$locale_file = ABSPATH . "wp-includes/languages/$locale.php";
if ( !file_exists($locale_file) )
return;
include($locale_file);
foreach ( $this->locale_vars as $var ) {
$this->$var = $$var;
}
}
function get_weekday($weekday_number) {