Parent Directory
|
Revision Log
|
Revision Graph
Initial version.
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | /** |
| 5 | * Implementation of hook_uninstall(). |
| 6 | */ |
| 7 | function cck_field_indexer_uninstall() { |
| 8 | if (db_table_exists('field_indexer_map')) { |
| 9 | db_query("DELETE FROM {field_indexer_map} WHERE namespace = 'cck'"); |
| 10 | } |
| 11 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |