diff --git a/core/includes/common.inc b/core/includes/common.inc index 09ba0e7e33e3d9de94943406a5e551b6e31d5ea3..e0d1861168548466db1f72ce59fa3cc87f1b82ea 100644 --- a/core/includes/common.inc +++ b/core/includes/common.inc @@ -1939,11 +1939,11 @@ function l($text, $path, array $options = array()) { // Because l() is called very often we statically cache values that require an // extra function call. static $drupal_static_fast; - if(!isset($drupal_static_fast['active'])) { + if (!isset($drupal_static_fast['active'])) { $drupal_static_fast['active'] = &drupal_static(__FUNCTION__); } $active = &$drupal_static_fast['active']; - if(!isset($active)) { + if (!isset($active)) { $active = array( 'path' => current_path(), 'front_page' => drupal_is_front_page(),