]> git.mxchange.org Git - mailer.git/blobdiff - inc/fix_filters.php
Extension ext-network continued (sorry guys for all these splitted commits):
[mailer.git] / inc / fix_filters.php
index 36be53b5a86ec9006ff9aaa10bcc9704db01f3a8..b7dc7a9f400394bd40a0b0596d141e6e685d115e 100644 (file)
@@ -17,7 +17,7 @@
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -42,7 +42,7 @@ if (!defined('__SECURITY')) {
 
 // Get all filters
 $result = SQL_QUERY('SELECT
-       `filter_name`, `filter_function`
+       `filter_name`,`filter_function`
 FROM
        `{?_MYSQL_PREFIX?}_filters`
 ORDER BY
@@ -72,7 +72,7 @@ SQL_FREERESULT($result);
 
 // Now insert our unqiue key
 addExtensionSql('ALTER TABLE `{?_MYSQL_PREFIX?}_filters` DROP KEY `name_function`');
-addExtensionSql('ALTER TABLE `{?_MYSQL_PREFIX?}_filters` ADD UNIQUE `name_function` (`filter_name` , `filter_function`)');
+addExtensionSql('ALTER TABLE `{?_MYSQL_PREFIX?}_filters` ADD UNIQUE INDEX `name_function` (`filter_name` , `filter_function`)');
 
 // [EOF]
 ?>