diff --git a/core/modules/user/lib/Drupal/user/UserAutocomplete.php b/core/modules/user/lib/Drupal/user/UserAutocomplete.php index be1fd52..4d36923 100644 --- a/core/modules/user/lib/Drupal/user/UserAutocomplete.php +++ b/core/modules/user/lib/Drupal/user/UserAutocomplete.php @@ -57,13 +57,9 @@ public function __construct(Connection $connection, ConfigFactory $config_factor */ public function getMatches($string, $include_anonymous = FALSE) { $matches = array(); - debug($string); - debug($include_anonymous); if ($string) { if ($include_anonymous) { $anonymous_name = $this->configFactory->get('user.settings')->get('anonymous'); - debug($string); - debug($anonymous_name); // Allow autocompletion for the anonymous user. if (stripos($anonymous_name, $string) !== FALSE) { $matches[$anonymous_name] = check_plain($anonymous_name);