summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-12-06 18:06:22 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-12-06 18:06:22 +0000
commit89ac9876d08935ab9e644dac2e051925197e4e43 (patch)
treed84d452342693d1bacb776233651407fcec3e0f7
parent26970f14ff41d2c29be56436be60f5f60e6f54eb (diff)
downloadbrdo-89ac9876d08935ab9e644dac2e051925197e4e43.tar.gz
brdo-89ac9876d08935ab9e644dac2e051925197e4e43.tar.bz2
#633156 follow-up by sun: Fix declaration of drupalGetAJAX().
-rw-r--r--modules/simpletest/drupal_web_test_case.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/drupal_web_test_case.php b/modules/simpletest/drupal_web_test_case.php
index 55f559f39..59413e584 100644
--- a/modules/simpletest/drupal_web_test_case.php
+++ b/modules/simpletest/drupal_web_test_case.php
@@ -1409,7 +1409,7 @@ class DrupalWebTestCase extends DrupalTestCase {
/**
* 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));
}