[Vtigercrm-commits] [vtiger-commits] r9572 - in /vtigercrm/branches/5.0.1/modules: Accounts/ Campaigns/ Contacts/ Faq/ HelpDesk/ Invoice/ Leads/ Notes/ Potentials/ PriceBooks/ Products/ PurchaseOrder/ Quotes/ SalesOrder/ Users/ Vendors/

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Thu Oct 5 14:53:21 EDT 2006


Author: richie
Date: Thu Oct  5 12:52:28 2006
New Revision: 9572

Log:
UTF-8 support added. Fixes #2297 

Modified:
    vtigercrm/branches/5.0.1/modules/Accounts/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/Campaigns/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/Contacts/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/Faq/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/HelpDesk/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/Invoice/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/Leads/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/Notes/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/Potentials/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/PriceBooks/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/Products/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/PurchaseOrder/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/Quotes/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/SalesOrder/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/Users/DetailViewAjax.php
    vtigercrm/branches/5.0.1/modules/Vendors/DetailViewAjax.php

Modified: vtigercrm/branches/5.0.1/modules/Accounts/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Accounts/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Accounts/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
      $crmid = $_REQUEST["recordid"];
      $tablename = $_REQUEST["tableName"];
      $fieldname = $_REQUEST["fldName"];
-     $fieldvalue = $_REQUEST["fieldValue"];
+     $fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
      if($crmid != "")
 	 {
 	     $acntObj = new Account();

Modified: vtigercrm/branches/5.0.1/modules/Campaigns/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Campaigns/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Campaigns/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 	if($crmid != "")
 	{
 		$modObj = new Campaign();

Modified: vtigercrm/branches/5.0.1/modules/Contacts/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Contacts/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Contacts/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
      $crmid = $_REQUEST["recordid"];
      $tablename = $_REQUEST["tableName"];
      $fieldname = $_REQUEST["fldName"];
-     $fieldvalue = $_REQUEST["fieldValue"];
+     $fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
      if($crmid != "")
 	 {
 		 $cntObj = new Contact();

Modified: vtigercrm/branches/5.0.1/modules/Faq/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Faq/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Faq/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 	if($crmid != "")
 	{
 		$modObj = new Faq();

Modified: vtigercrm/branches/5.0.1/modules/HelpDesk/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/HelpDesk/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/HelpDesk/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 
 	if($crmid != "")
 	{

Modified: vtigercrm/branches/5.0.1/modules/Invoice/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Invoice/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Invoice/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 
 	if($crmid != "")
 	{

Modified: vtigercrm/branches/5.0.1/modules/Leads/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Leads/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Leads/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -21,7 +21,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 	if($crmid != "")
 	{
 		$leadObj = new Lead();

Modified: vtigercrm/branches/5.0.1/modules/Notes/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Notes/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Notes/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
      $crmid = $_REQUEST["recordid"];
      $tablename = $_REQUEST["tableName"];
      $fieldname = $_REQUEST["fldName"];
-     $fieldvalue = $_REQUEST["fieldValue"];
+     $fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
      if($crmid != "")
 	 {
 		 $modObj = new Note();

Modified: vtigercrm/branches/5.0.1/modules/Potentials/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Potentials/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Potentials/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 	if($crmid != "")
 	{
 		$modObj = new Potential();

Modified: vtigercrm/branches/5.0.1/modules/PriceBooks/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/PriceBooks/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/PriceBooks/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 	if($crmid != "")
 	{
 		$modObj = new PriceBook();

Modified: vtigercrm/branches/5.0.1/modules/Products/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Products/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Products/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 	if($crmid != "")
 	{
 		$modObj = new Product();

Modified: vtigercrm/branches/5.0.1/modules/PurchaseOrder/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/PurchaseOrder/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/PurchaseOrder/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 	if($crmid != "")
 	{
 		$modObj = new Order();

Modified: vtigercrm/branches/5.0.1/modules/Quotes/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Quotes/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Quotes/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 	if($crmid != "")
 	{
 		$modObj = new Quote();

Modified: vtigercrm/branches/5.0.1/modules/SalesOrder/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/SalesOrder/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/SalesOrder/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 	if($crmid != "")
 	{
 		$modObj = new SalesOrder();

Modified: vtigercrm/branches/5.0.1/modules/Users/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Users/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Users/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -21,7 +21,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 	if($crmid != "")
 	{
 		$userObj = new User();

Modified: vtigercrm/branches/5.0.1/modules/Vendors/DetailViewAjax.php
==============================================================================
--- vtigercrm/branches/5.0.1/modules/Vendors/DetailViewAjax.php (original)
+++ vtigercrm/branches/5.0.1/modules/Vendors/DetailViewAjax.php Thu Oct  5 12:52:28 2006
@@ -22,7 +22,7 @@
 	$crmid = $_REQUEST["recordid"];
 	$tablename = $_REQUEST["tableName"];
 	$fieldname = $_REQUEST["fldName"];
-	$fieldvalue = $_REQUEST["fieldValue"];
+	$fieldvalue = utf8RawUrlDecode($_REQUEST["fieldValue"]); 
 	if($crmid != "")
 	{
 		$modObj = new Vendor();





More information about the vtigercrm-commits mailing list