[Vtigercrm-commits] [vtiger-commits] r7152 - in /vtigercrm/trunk/modules: Invoice/CreatePDF.php PurchaseOrder/CreatePDF.php Quotes/CreatePDF.php SalesOrder/CreateSOPDF.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Fri Jun 16 01:56:21 EDT 2006
Author: saraj
Date: Thu Jun 15 23:56:15 2006
New Revision: 7152
Log:
* Removed the vtiger prefix which have been added for the table's columnnames
Modified:
vtigercrm/trunk/modules/Invoice/CreatePDF.php
vtigercrm/trunk/modules/PurchaseOrder/CreatePDF.php
vtigercrm/trunk/modules/Quotes/CreatePDF.php
vtigercrm/trunk/modules/SalesOrder/CreateSOPDF.php
Modified: vtigercrm/trunk/modules/Invoice/CreatePDF.php
==============================================================================
--- vtigercrm/trunk/modules/Invoice/CreatePDF.php (original)
+++ vtigercrm/trunk/modules/Invoice/CreatePDF.php Thu Jun 15 23:56:15 2006
@@ -15,7 +15,7 @@
require_once('include/database/PearDatabase.php');
global $adb,$app_strings,$products_per_page;
-$sql="select vtiger_currency_symbol from vtiger_currency_info";
+$sql="select currency_symbol from vtiger_currency_info";
$result = $adb->query($sql);
$currency_symbol = $adb->query_result($result,0,'currency_symbol');
Modified: vtigercrm/trunk/modules/PurchaseOrder/CreatePDF.php
==============================================================================
--- vtigercrm/trunk/modules/PurchaseOrder/CreatePDF.php (original)
+++ vtigercrm/trunk/modules/PurchaseOrder/CreatePDF.php Thu Jun 15 23:56:15 2006
@@ -15,7 +15,7 @@
global $adb,$app_strings;
-$sql="select vtiger_currency_symbol from vtiger_currency_info";
+$sql="select currency_symbol from vtiger_currency_info";
$result = $adb->query($sql);
$currency_symbol = $adb->query_result($result,0,'currency_symbol');
Modified: vtigercrm/trunk/modules/Quotes/CreatePDF.php
==============================================================================
--- vtigercrm/trunk/modules/Quotes/CreatePDF.php (original)
+++ vtigercrm/trunk/modules/Quotes/CreatePDF.php Thu Jun 15 23:56:15 2006
@@ -16,7 +16,7 @@
global $adb,$app_strings;
-$sql="select vtiger_currency_symbol from vtiger_currency_info";
+$sql="select currency_symbol from vtiger_currency_info";
$result = $adb->query($sql);
$currency_symbol = $adb->query_result($result,0,'currency_symbol');
Modified: vtigercrm/trunk/modules/SalesOrder/CreateSOPDF.php
==============================================================================
--- vtigercrm/trunk/modules/SalesOrder/CreateSOPDF.php (original)
+++ vtigercrm/trunk/modules/SalesOrder/CreateSOPDF.php Thu Jun 15 23:56:15 2006
@@ -16,7 +16,7 @@
global $adb,$app_strings,$products_per_page;
-$sql="select vtiger_currency_symbol from vtiger_currency_info";
+$sql="select currency_symbol from vtiger_currency_info";
$result = $adb->query($sql);
$currency_symbol = $adb->query_result($result,0,'currency_symbol');
More information about the vtigercrm-commits
mailing list