Definition

drupal_clear_path_cache()
drupal-5/includes/common.inc, line 123

Description

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

Code

<?php
function drupal_clear_path_cache() {
  drupal_lookup_path('wipe');
}
?>