Watches search_names instead of nom and nick for notification.
authorStéphane Jacob <jacou@melix.net>
Tue, 13 Jan 2009 14:47:24 +0000 (15:47 +0100)
committerStéphane Jacob <jacou@melix.net>
Tue, 13 Jan 2009 14:54:43 +0000 (15:54 +0100)
include/notifs.inc.php
modules/profile/general.inc.php
upgrade/newdirectory-0.0.1/14_watchnames.sql [new file with mode: 0644]

index 14472b2..c8c9c0a 100644 (file)
@@ -138,7 +138,7 @@ function select_notifs($mail, $uid=null, $last=null, $iterator=true)
 // {{{
 
 global $prf_desc;
-$prf_desc = array('nom' => 'Son patronyme',
+$prf_desc = array('search_names' => 'L\'un de ses noms',
                   'freetext' => 'Le texte libre',
                   'mobile' => 'Son numéro de téléphone portable',
                   'nationalite' => 'Sa nationalité',
index 3b26ddd..7fd9816 100644 (file)
@@ -374,7 +374,7 @@ class ProfileGeneral extends ProfilePage
         $this->watched= array('freetext' => true, 'tels' => true,
                               'networking' => true, 'edus' => true,
                               'nationalite' => true, 'nationalite2' => true,
-                              'nationalite3' => true);
+                              'nationalite3' => true, 'search_names' => true);
     }
 
     protected function _fetchData()
diff --git a/upgrade/newdirectory-0.0.1/14_watchnames.sql b/upgrade/newdirectory-0.0.1/14_watchnames.sql
new file mode 100644 (file)
index 0000000..8baebda
--- /dev/null
@@ -0,0 +1,13 @@
+ALTER TABLE watch_profile MODIFY field enum('search_names', 'nom', 'freetext', 'mobile', 'nationalite',
+                                            'nationalite2', 'nationalite3', 'nick', 'web', 'networking',
+                                            'edus', 'addresses', 'section', 'binets', 'medals', 'cv',
+                                            'jobs', 'photo');
+
+UPDATE watch_profile SET field = 'search_names' WHERE field = 'nom' OR field = 'nick';
+
+ALTER TABLE watch_profile MODIFY field enum('search_names', 'freetext', 'mobile', 'nationalite',
+                                            'nationalite2', 'nationalite3', 'web', 'networking','edus',
+                                            'addresses', 'section', 'binets', 'medals', 'cv', 'jobs',
+                                            'photo');
+
+# vim:set syntax=mysql: