Objet : devel-adl
Archives de la liste
- From: svn AT agendadulibre.org
- To: devel AT agendadulibre.org
- Subject: [Devel] r386 - trunk
- Date: Tue, 23 Sep 2008 22:59:02 +0200 (CEST)
- List-archive: <http://agendadulibre.org/pipermail/devel>
- List-id: Developpement de l'Agenda du Libre <devel.agendadulibre.org>
Author: thomas
Date: Tue Sep 23 22:59:02 2008
New Revision: 386
Log:
Correction de bugs ou soucis mineurs:
* utilisation de fetch_event() au lieu de faire une requête SQL à la
main
* ajout de stripslashes() à certains endroits
* typos mineures.
Modified:
trunk/cancelevent.php
trunk/editevent.php
trunk/rejectevent.php
trunk/requestinfosevent.php
trunk/validateevent.php
Modified: trunk/cancelevent.php
==============================================================================
--- trunk/cancelevent.php (original)
+++ trunk/cancelevent.php Tue Sep 23 22:59:02 2008
@@ -29,15 +29,9 @@
{
global $moderatorlist;
- $sql = "select * from events where id=" . $db->quote_smart($id);
- $ret = $db->query($sql);
- if ($ret == FALSE)
- {
- error ("La requ�te <i>" . $sql . "</i> a �chou�");
- return -1;
- }
-
- $oldevent = mysql_fetch_object ($ret);
+ $oldevent = fetch_event($db, $id);
+ if (! $oldevent)
+ exit;
$sql = "delete from events where id=" . $id;
$ret = $db->query ($sql);
@@ -66,7 +60,7 @@
"=======================================================\n" .
$oldevent_str . "\n".
"=======================================================\n\n" .
- "Bonne journ�e\n\n".
+ "Bonne journ�e,\n\n".
"-- L'�quipe de mod�ration");
}
Modified: trunk/editevent.php
==============================================================================
--- trunk/editevent.php (original)
+++ trunk/editevent.php Tue Sep 23 22:59:02 2008
@@ -30,15 +30,9 @@
{
global $moderatorlist;
- $sql = "select * from events where id=" . $db->quote_smart($id);
- $ret = $db->query($sql);
- if ($ret == FALSE)
- {
- error ("La requ�te <i>" . $sql . "</i> a �chou�");
- return -1;
- }
-
- $oldevent = mysql_fetch_object ($ret);
+ $oldevent = fetch_event($db, $id);
+ if (! $oldevent)
+ return -1;
$sql = "UPDATE events SET " .
"title=" . $db->quote_smart ($title) . ", "
.
Modified: trunk/rejectevent.php
==============================================================================
--- trunk/rejectevent.php (original)
+++ trunk/rejectevent.php Tue Sep 23 22:59:02 2008
@@ -45,15 +45,9 @@
else if ($_POST['reason'] == "custom")
$reason = wordwrap("Toutefois, votre �v�nement n'a pour le moment pas
retenu l'attention des mod�rateurs, pour la raison suivante: " .
stripslashes($_POST['customtext']));
- $sql = "select * from events where id=" . $db->quote_smart($id);
- $ret = $db->query ($sql);
- if ($ret == FALSE)
- {
- error ("La requ�te <i>" . $sql . "</i> a �chou�");
- return -1;
- }
-
- $row = mysql_fetch_object($ret);
+ $row = fetch_event($db, $id);
+ if (! $row)
+ exit;
$sql = "delete from events where id=" . $db->quote_smart($id);
@@ -65,7 +59,7 @@
}
/* Send email */
- calendar_mail ($row->submitter, $moderatorlist, "�v�nement '" .
$row->title . "' refus�",
+ calendar_mail ($row->submitter, $moderatorlist, "�v�nement '" .
stripslashes($row->title) . "' refus�",
"Bonjour,\n\n" .
"Vous avez soumis l'�v�nement suivant dans l'Agenda du
Libre, et nous\n" .
"vous remercions de cette contribution.\n\n" .
@@ -79,8 +73,8 @@
$row->description, $row->city,
$row->region, $row->locality,
$row->url, $row->contact,
$row->submitter, $row->tags) . "\n" .
"=====================================================\n\n" .
- "Merci de votre contribution !\n\n" .
- "-- \nL'�quipe de mod�ration");
+ "Avec tous nos remerciements pour votre contribution,\n\n" .
+ "-- \nL'�quipe des mod�rateurs de l'Agenda du Libre");
header("Location: moderation.php");
exit;
Modified: trunk/requestinfosevent.php
==============================================================================
--- trunk/requestinfosevent.php (original)
+++ trunk/requestinfosevent.php Tue Sep 23 22:59:02 2008
@@ -91,12 +91,14 @@
}
echo '<p class="moderationheader">';
-echo "<a
href=\"moderation.php\">Mod�ration</a> >>> Demande
d'informations de l'�v�nement";
+echo "<a
href=\"moderation.php\">Mod�ration</a> >>> Demande
d'informations sur l'�v�nement";
echo "</p>";
?>
<div class="moderationbox">
+<h2>R�daction du message</h2>
+
<form action="requestinfosevent.php?id=<?php echo $id ?>" method="post">
<p>Bonjour,</p>
Modified: trunk/validateevent.php
==============================================================================
--- trunk/validateevent.php (original)
+++ trunk/validateevent.php Tue Sep 23 22:59:02 2008
@@ -38,15 +38,10 @@
/* Fetch contact email, in order to be able to send a confirmation
mail */
- $sql = "select * from events where id=" . $db->quote_smart($id);
- $ret = $db->query ($sql);
- if ($ret == FALSE)
- {
- error ("La requ�te <i>" . $sql . "</i> a �chou�");
- exit;
- }
+ $row = fetch_event($db, $id);
+ if (! $row)
+ exit;
- $row = mysql_fetch_object($ret);
$email = $row->contact;
$title = $row->title;
$secret = $row->secret;
- [Devel] r386 - trunk, svn, 23/09/2008
Archives gérées par MHonArc 2.6.16.