| 12345678910111213141516 |
- <?php
- /**
- * @file
- * Installation functionality for Mollom testing module.
- */
- /**
- * Implements hook_uninstall().
- */
- function mollom_test_server_uninstall() {
- db_delete('variable')
- ->condition('name', db_like('mollom_test_server') . '%', 'LIKE')
- ->execute();
- }
|