Parent Directory
|
Revision Log
|
Revision Graph
Fixed access bug in issue #347037. All users of the Drupal 6 beta need to upgrade to this patch, and you need to run update.php as the admin user afterward to ensure menu cache is cleared.
| 1 | <?php |
| 2 | /* |
| 3 | * $Id$ |
| 4 | * |
| 5 | * Install file for Hall of Fame |
| 6 | */ |
| 7 | |
| 8 | |
| 9 | /* |
| 10 | * This is necessary to clear the menu access cache. |
| 11 | * Normally this will not be an issue, but it can be |
| 12 | * a problem for users of the early beta of the D6 |
| 13 | * version of this module. |
| 14 | */ |
| 15 | function hof_update_1() { |
| 16 | drupal_flush_all_caches(); |
| 17 | return array(); |
| 18 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |