Small fixes of the axletter.
authorFlorent Bruneau <florent.bruneau@polytechnique.org>
Sat, 10 Nov 2007 11:14:24 +0000 (12:14 +0100)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Sat, 10 Nov 2007 11:14:24 +0000 (12:14 +0100)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
configs/mails.conf
modules/axletter/axletter.inc.php
templates/axletter/show.tpl
upgrade/0.9.16/02_axletter.sql [new file with mode: 0644]

index 48c3dc6..c3aed32 100644 (file)
@@ -36,7 +36,7 @@ from=webmaster@polytechnique.org
 to=geoloc@staff.polytechnique.org
 
 [mails_ax]
-from="Association des Anciens élèves de l'X" <info@amicale.polytechnique.org>
+from="Amicale des Anciens de l'X" <info@amicale.polytechnique.org>
 replyto=info@amicale.polytechnique.org
 
 [payment_ready]
index 386eb26..575b48b 100644 (file)
@@ -45,7 +45,7 @@ class AXLetter extends MassMailer
             } else {
                 $res = XDB::query("SELECT  *
                                      FROM  axletter
-                                    WHERE  id = {?} OR shortname = {?}", $id, $id);
+                                    WHERE  id = {?} OR short_name = {?}", $id, $id);
             }
             if (!$res->numRows()) {
                 $this->_id = null;
@@ -223,7 +223,7 @@ class AXLetter extends MassMailer
 
     static public function listSent()
     {
-        $res = XDB::query("SELECT  IF(shortname IS NULL, id, shortname) as id, date, subject AS titre
+        $res = XDB::query("SELECT  IF(short_name IS NULL, id, short_name) as id, date, subject AS titre
                              FROM  axletter
                             WHERE  NOT (FIND_IN_SET('new', bits))
                          ORDER BY  date DESC");
@@ -232,7 +232,7 @@ class AXLetter extends MassMailer
 
     static public function listAll()
     {
-        $res = XDB::query("SELECT  IF(shortname IS NULL, id, shortname) as id, date, subject AS titre
+        $res = XDB::query("SELECT  IF(short_name IS NULL, id, short_name) as id, date, subject AS titre
                              FROM  axletter
                          ORDER BY  date DESC");
         return $res->fetchAllAssoc();
index 08a46c6..c85689b 100644 (file)
@@ -54,6 +54,6 @@
       {include file="axletter/letter.tpl"}
     </td>
   </tr>
-</fieldset>
+</table>
 
 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}
diff --git a/upgrade/0.9.16/02_axletter.sql b/upgrade/0.9.16/02_axletter.sql
new file mode 100644 (file)
index 0000000..175996c
--- /dev/null
@@ -0,0 +1,3 @@
+alter table axletter change column shortname short_name varchar(16) unique key;
+
+# vim:set syntax=mysql: