Fixed bug [0000116] - & display issue
[fa-stable.git] / sales / inquiry / customer_inquiry.php
index 6db43593a18d1ed2ee156b97f0a2588d6a22381f..90ac0da6313f05ac905f895a8f825938bf3d495c 100644 (file)
@@ -1,13 +1,13 @@
 <?php
 /**********************************************************************
     Copyright (C) FrontAccounting, LLC.
-       Released under the terms of the GNU Affero General Public License,
-       AGPL, as published by the Free Software Foundation, either version 
-       of the License, or (at your option) any later version.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-    See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
 $page_security = 1;
 $path_to_root="../..";
@@ -127,7 +127,7 @@ function trans_view($trans)
 
 function due_date($row)
 {
-       return  $row["type"] == 10      ? sql2date($row["due_date"]) : '';
+       return  $row["type"] == 10      ? $row["due_date"] : '';
 }
 
 function gl_view($row)
@@ -272,7 +272,7 @@ $cols = array(
        _("Order") => array('fun'=>'order_view'), 
        _("Reference"), 
        _("Date") => array('name'=>'tran_date', 'type'=>'date', 'ord'=>'desc'),
-       _("Due Date") => array('type=>date', 'fun'=>'due_date'),
+       _("Due Date") => array('type'=>'date', 'fun'=>'due_date'),
        _("Customer") => array('ord'=>''), 
        _("Branch") => array('ord'=>''), 
        _("Currency") => array('align'=>'center'),