fmsystem-commits
[Top][All Lists]
Advanced

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

[Fmsystem-commits] [13703] replace double quote with single


From: Sigurd Nes
Subject: [Fmsystem-commits] [13703] replace double quote with single
Date: Wed, 12 Aug 2015 13:07:46 +0000

Revision: 13703
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=13703
Author:   sigurdne
Date:     2015-08-12 13:07:45 +0000 (Wed, 12 Aug 2015)
Log Message:
-----------
replace double quote with single

Modified Paths:
--------------
    trunk/property/inc/class.uitts.inc.php

Modified: trunk/property/inc/class.uitts.inc.php
===================================================================
--- trunk/property/inc/class.uitts.inc.php      2015-08-12 09:25:22 UTC (rev 
13702)
+++ trunk/property/inc/class.uitts.inc.php      2015-08-12 13:07:45 UTC (rev 
13703)
@@ -3129,7 +3129,7 @@
                                $note_def[] = array('key' => 
'order_text','label'=>lang('order 
text'),'sortable'=>false,'resizeable'=>true,'formatter'=>'FormatterCenter');
                                foreach($additional_notes as &$note)
                                {
-                                       $note['order_text'] = '<input 
type="checkbox" name="values[order_text][]" value="'.$note['value_note'].'" 
title="'.lang('Check to add text to order').'">';
+                                       $note['order_text'] = '<input 
type="checkbox" name="values[order_text][]" value="'.str_replace('"', "'", 
$note['value_note']).'" title="'.lang('Check to add text to order').'">';
                                }
                        }
 




reply via email to

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