summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-06-07 02:32:57 +0000
committerDries Buytaert <dries@buytaert.net>2009-06-07 02:32:57 +0000
commit8322883918d3f4351cf05596bef0c3ec587968a9 (patch)
treeafc8b20763ae9da3fb73f221be132cbece1b8e73
parenteb0839b984cec146a3580cc40e00a58650e460d1 (diff)
downloadbrdo-8322883918d3f4351cf05596bef0c3ec587968a9.tar.gz
brdo-8322883918d3f4351cf05596bef0c3ec587968a9.tar.bz2
- Patch #480412 by JamesAn: converted to drupal_static().
-rw-r--r--modules/book/book.module6
-rw-r--r--modules/book/book.test4
2 files changed, 7 insertions, 3 deletions
diff --git a/modules/book/book.module b/modules/book/book.module
index e14510480..e70b824a2 100644
--- a/modules/book/book.module
+++ b/modules/book/book.module
@@ -294,7 +294,7 @@ function theme_book_title_link($link) {
* the options for a form select.
*/
function book_get_books() {
- static $all_books;
+ $all_books = &drupal_static(__FUNCTION__);
if (!isset($all_books)) {
$all_books = array();
@@ -580,7 +580,7 @@ function book_update_bid($book_link) {
* immediately after it in the array.
*/
function book_get_flat_menu($book_link) {
- static $flat = array();
+ $flat = &drupal_static(__FUNCTION__, array());
if (!isset($flat[$book_link['mlid']])) {
// Call menu_tree_all_data() to take advantage of the menu system's caching.
@@ -1144,7 +1144,7 @@ function book_link_load($mlid) {
* An subtree of menu links in an array, in the order they should be rendered.
*/
function book_menu_subtree_data($item) {
- static $tree = array();
+ $tree = &drupal_static(__FUNCTION__, array());
// Generate a cache ID (cid) specific for this $menu_name and $item.
$cid = 'links:' . $item['menu_name'] . ':subtree-cid:' . $item['mlid'];
diff --git a/modules/book/book.test b/modules/book/book.test
index 872cbc562..8290f6f17 100644
--- a/modules/book/book.test
+++ b/modules/book/book.test
@@ -95,6 +95,8 @@ class BookTestCase extends DrupalWebTestCase {
* The nodes that should be displayed in the breadcrumb.
*/
function checkBookNode($node, $nodes, $previous = FALSE, $up = FALSE, $next = FALSE, array $breadcrumb) {
+ // $number does not use drupal_static as it should not be reset
+ // since it uniquely identifies each call to checkBookNode().
static $number = 0;
$this->drupalGet('node/' . $node->nid);
@@ -166,6 +168,8 @@ class BookTestCase extends DrupalWebTestCase {
* @param integer $parent Parent book reference id.
*/
function createBookNode($book_nid, $parent = NULL) {
+ // $number does not use drupal_static as it should not be reset
+ // since it uniquely identifies each call to createBookNode().
static $number = 0; // Used to ensure that when sorted nodes stay in same order.
$edit = array();