function drupal_clear_path_cache

7.x path.inc drupal_clear_path_cache($source = NULL)
6.x common.inc drupal_clear_path_cache()

Reset the static variable which holds the aliases mapped for this request.

1 call to drupal_clear_path_cache()
path_set_alias in drupal-6.x/modules/path/path.module
Set an aliased path for a given Drupal path, preventing duplicates.

File

drupal-6.x/includes/common.inc, line 136
Common functions that many Drupal modules will need to reference.

Code

function drupal_clear_path_cache() {
  drupal_lookup_path('wipe');
}