Issue #1411114 by Albert Volkman, sun: Fixed drupal_valid_test_ua() is not statically cached on non-positive match.

merge-requests/26/head
webchick 2012-03-11 11:36:23 -07:00
parent de30adeb09
commit 4901bf92a1
1 changed files with 2 additions and 1 deletions

View File

@ -2438,7 +2438,8 @@ function drupal_valid_test_ua() {
}
}
return FALSE;
$test_prefix = FALSE;
return $test_prefix;
}
/**