Skip to content

Instantly share code, notes, and snippets.

@stborchert
stborchert / gist:9778307
Last active August 29, 2015 13:57
Force Drupal to use English as default language on admin pages.
<?php
/**
* Force Drupal to use English as default language on admin pages and for drush.
*/
if (empty($_REQUEST) || (!empty($_GET['q']) && strpos($_GET['q'], 'admin') !== FALSE)) {
$language_default = array(
'language' => 'en', 'name' => 'English', 'native' => 'English',
'direction' => 0, 'enabled' => 1, 'plurals' => 0, 'formula' => '',
'domain' => '', 'prefix' => '', 'weight' => 0, 'javascript' => ''
);