From 89ac9876d08935ab9e644dac2e051925197e4e43 Mon Sep 17 00:00:00 2001 From: Angie Byron <webchick@24967.no-reply.drupal.org> Date: Sun, 6 Dec 2009 18:06:22 +0000 Subject: [PATCH] #633156 follow-up by sun: Fix declaration of drupalGetAJAX(). --- modules/simpletest/drupal_web_test_case.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php index 55f559f390a4..59413e5846ff 100644 --- a/modules/simpletest/drupal_web_test_case.php +++ b/modules/simpletest/drupal_web_test_case.php @@ -1409,7 +1409,7 @@ protected function drupalGet($path, array $options = array(), array $headers = a /** * Retrieve a Drupal path or an absolute path and JSON decode the result. */ - function drupalGetAJAX($path, array $options = array(), array $headers = array()) { + protected function drupalGetAJAX($path, array $options = array(), array $headers = array()) { return drupal_json_decode($this->drupalGet($path, $options, $headers)); } -- GitLab