Accéder au contenu.
Menu Sympa

devel - [Devel] r463 - branches/dui

Objet : devel-adl

Archives de la liste

[Devel] r463 - branches/dui


Chronologique Discussions 
  • From: svn AT agendadulibre.org
  • To: devel AT agendadulibre.org
  • Subject: [Devel] r463 - branches/dui
  • Date: Tue, 2 Mar 2010 20:05:59 +0100 (CET)
  • List-archive: <http://agendadulibre.org/pipermail/devel>
  • List-id: Developpement de l'Agenda du Libre <devel.agendadulibre.org>

Author: ldayot
Date: Tue Mar 2 20:05:56 2010
New Revision: 463

Log:
Correction d'une punaise dans l'enregistrement des evenements.
Il manquait le numero du departement, ce qui ne permettait pas de limiter la
liste
des lugs (EPN) au departament plutot qu'a la region s'il y en a beaucoup lors
de
l'affichage d'un evenement.

Modified:
branches/dui/class.event.inc.php

Modified: branches/dui/class.event.inc.php
==============================================================================
--- branches/dui/class.event.inc.php Tue Mar 2 20:04:08 2010 (r462)
+++ branches/dui/class.event.inc.php Tue Mar 2 20:05:56 2010 (r463)
@@ -114,6 +114,7 @@
"end_time=" . $this->db->quote_smart (date_timestamp2mysql
($this->end)) . ", ".
"description=" . $this->db->quote_smart ($this->description)
. ", ".
"address=" . $this->db->quote_smart ($this->address)
. ", ".
+ "department=" . $this->db->quote_smart
(floor($this->postalcode/1000)) . ", ".
"postalcode=" . $this->db->quote_smart ($this->postalcode)
. ", ".
"city=" . $this->db->quote_smart ($this->city)
. ", ".
"region=" . $this->db->quote_smart ($this->region)
. ", ".
@@ -596,21 +597,21 @@
}
else
{
- while ($city_record =
$this->db->fetchObject($city_res))
- {
- if ($this->postalcode
==
- (strlen($city_record->postalcode)==4 ? "0" : "").
$city_record->postalcode)
- {
-
$_isPostalcodeCity = true;
- break;
- }
- }
- if (!
isset($_isPostalcodeCity))
- {
- $this->message .= returnError ("Plusieurs villes portent ce
nom. Veuillez préciser.");
- $this->postalcode = -1;
- $error_cnt++;
- }
+ while ($city_record = $this->db->fetchObject($city_res))
+ {
+ if ($this->postalcode ==
+ (strlen($city_record->postalcode)==4 ? "0" : "").
$city_record->postalcode)
+ {
+ $_isPostalcodeCity = true;
+ break;
+ }
+ }
+ if (! isset($_isPostalcodeCity))
+ {
+ $this->message .= returnError ("Plusieurs villes
portent ce nom. Veuillez préciser.");
+ $this->postalcode = -1;
+ $error_cnt++;
+ }
}
}
else




  • [Devel] r463 - branches/dui, svn, 02/03/2010

Archives gérées par MHonArc 2.6.16.

Haut de le page