You are here

function messaging_static_reset in Messaging 6.4

Reset static variable. Drupal 7 core backport.

See http://api.drupal.org/api/function/drupal_static_reset/7

Parameters

$name: Name of the static variable to reset. Omit to reset all variables.

File

./messaging.module, line 1174

Code

function messaging_static_reset($name = NULL) {
  messaging_static($name, NULL, TRUE);
}