<?php
// $Id: stringoverrides.install,v 1.3.2.4 2008/09/10 21:03:33 robloach Exp $

/**
 * Implementation of hook_uninstall()
 */
function stringoverrides_uninstall() {
  // Remove all stored string replacements
  db_query('DELETE FROM {variable} WHERE name LIKE "locale_custom_strings_%"');
  db_query('DELETE FROM {variable} WHERE name LIKE "locale_custom_disabled_strings_%"');
}
