fmsystem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Fmsystem-commits] [8477] bkbooking: nsf bug fix


From: Kjell Arne Espedal
Subject: [Fmsystem-commits] [8477] bkbooking: nsf bug fix
Date: Tue, 03 Jan 2012 11:43:29 +0000

Revision: 8477
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=8477
Author:   kjell
Date:     2012-01-03 11:43:29 +0000 (Tue, 03 Jan 2012)
Log Message:
-----------
bkbooking: nsf bug fix

Modified Paths:
--------------
    branches/dev-thomasez/booking/inc/class.soapplication.inc.php
    branches/dev-thomasez/booking/inc/class.soevent.inc.php
    branches/dev-thomasez/booking/setup/tables_update.inc.php

Modified: branches/dev-thomasez/booking/inc/class.soapplication.inc.php
===================================================================
--- branches/dev-thomasez/booking/inc/class.soapplication.inc.php       
2012-01-03 11:42:41 UTC (rev 8476)
+++ branches/dev-thomasez/booking/inc/class.soapplication.inc.php       
2012-01-03 11:43:29 UTC (rev 8477)
@@ -23,7 +23,7 @@
                                        'activity_id'   => array('type' => 
'int', 'required' => true),
                                        'status'        => array('type' => 
'string', 'required' => true),
                                        'customer_street'               => 
array('type' => 'string', 'required' => false),
-                                       'customer_zipcode'              => 
array('type' => 'string', 'required' => false),
+                                       'customer_zip_code'             => 
array('type' => 'string', 'required' => false),
                                        'customer_district'             => 
array('type' => 'string', 'required' => false),
                                        'customer_city'                 => 
array('type' => 'string', 'required' => false),
                                        'customer_identifier_type'              
=> array('type' => 'string', 'required' => true),

Modified: branches/dev-thomasez/booking/inc/class.soevent.inc.php
===================================================================
--- branches/dev-thomasez/booking/inc/class.soevent.inc.php     2012-01-03 
11:42:41 UTC (rev 8476)
+++ branches/dev-thomasez/booking/inc/class.soevent.inc.php     2012-01-03 
11:43:29 UTC (rev 8477)
@@ -26,7 +26,7 @@
                                        'secret'        => array('type' => 
'string', 'required' => true),
                                        'sms_total'             => array('type' 
=> 'int', 'required' => false),
                                        'customer_street'               => 
array('type' => 'string', 'required' => false),
-                                       'customer_zipcode'              => 
array('type' => 'string', 'required' => false),
+                                       'customer_zip_code'             => 
array('type' => 'string', 'required' => false),
                                        'customer_district'             => 
array('type' => 'string', 'required' => false),
                                        'customer_city'                 => 
array('type' => 'string', 'required' => false),
                                        'customer_organization_name'    => 
array('type' => 'string', 'required' => False, 'query' => true),

Modified: branches/dev-thomasez/booking/setup/tables_update.inc.php
===================================================================
--- branches/dev-thomasez/booking/setup/tables_update.inc.php   2012-01-03 
11:42:41 UTC (rev 8476)
+++ branches/dev-thomasez/booking/setup/tables_update.inc.php   2012-01-03 
11:43:29 UTC (rev 8477)
@@ -2704,11 +2704,11 @@
        {
                $GLOBALS['phpgw_setup']->oProc->m_odb->transaction_begin();
                $GLOBALS['phpgw_setup']->oProc->m_odb->query("ALTER TABLE 
bb_application ADD COLUMN customer_street varchar(50) DEFAULT NULL");
-               $GLOBALS['phpgw_setup']->oProc->m_odb->query("ALTER TABLE 
bb_application ADD COLUMN customer_zipcode varchar(50) DEFAULT NULL");
+               $GLOBALS['phpgw_setup']->oProc->m_odb->query("ALTER TABLE 
bb_application ADD COLUMN customer_zip_code varchar(50) DEFAULT NULL");
                $GLOBALS['phpgw_setup']->oProc->m_odb->query("ALTER TABLE 
bb_application ADD COLUMN customer_district varchar(50) DEFAULT NULL");
                $GLOBALS['phpgw_setup']->oProc->m_odb->query("ALTER TABLE 
bb_application ADD COLUMN customer_city varchar(50) DEFAULT NULL");
                $GLOBALS['phpgw_setup']->oProc->m_odb->query("ALTER TABLE 
bb_event ADD COLUMN customer_street varchar(50) DEFAULT NULL");
-               $GLOBALS['phpgw_setup']->oProc->m_odb->query("ALTER TABLE 
bb_event ADD COLUMN customer_zipcode varchar(50) DEFAULT NULL");
+               $GLOBALS['phpgw_setup']->oProc->m_odb->query("ALTER TABLE 
bb_event ADD COLUMN customer_zip_code varchar(50) DEFAULT NULL");
                $GLOBALS['phpgw_setup']->oProc->m_odb->query("ALTER TABLE 
bb_event ADD COLUMN customer_district varchar(50) DEFAULT NULL");
                $GLOBALS['phpgw_setup']->oProc->m_odb->query("ALTER TABLE 
bb_event ADD COLUMN customer_city varchar(50) DEFAULT NULL");
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]