]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/Smarty/plugins/modifier.strip_semicolon.php
Release 6.5.0
[Github/sugarcrm.git] / include / Smarty / plugins / modifier.strip_semicolon.php
1 <?php
2
3 /*
4
5 Modification information for LGPL compliance
6
7 r58602 - 2010-10-20 14:33:52 -0700 (Wed, 20 Oct 2010) - engsvnbuild - Author: Stanislav Malyshev <smalyshev@gmail.com>
8     handle Japanese semicolons too
9
10 r58597 - 2010-10-20 11:40:04 -0700 (Wed, 20 Oct 2010) - engsvnbuild - Author: Jenny Gonsalves <jenny@sugarcrm.com>
11     Revert "Merge branch 'RC2'"
12
13 r58596 - 2010-10-20 09:50:45 -0700 (Wed, 20 Oct 2010) - engsvnbuild - Merge: a813190 e0a061b
14 Author: Jenny Gonsalves <jenny@sugarcrm.com>
15     Merge branch 'RC2'
16
17 r56990 - 2010-06-16 13:05:36 -0700 (Wed, 16 Jun 2010) - kjing - snapshot "Mango" svn branch to a new one for GitHub sync
18
19 r56989 - 2010-06-16 13:01:33 -0700 (Wed, 16 Jun 2010) - kjing - defunt "Mango" svn dev branch before github cutover
20
21 r55980 - 2010-04-19 13:31:28 -0700 (Mon, 19 Apr 2010) - kjing - create Mango (6.1) based on windex
22
23 r51719 - 2009-10-22 10:18:00 -0700 (Thu, 22 Oct 2009) - mitani - Converted to Build 3  tags and updated the build system 
24
25 r51634 - 2009-10-19 13:32:22 -0700 (Mon, 19 Oct 2009) - mitani - Windex is the branch for Sugar Sales 1.0 development
26
27 r50375 - 2009-08-24 18:07:43 -0700 (Mon, 24 Aug 2009) - dwong - branch kobe2 from tokyo r50372
28
29 r42807 - 2008-12-29 11:16:59 -0800 (Mon, 29 Dec 2008) - dwong - Branch from trunk/sugarcrm r42806 to branches/tokyo/sugarcrm
30
31 r24313 - 2007-07-13 15:01:40 -0700 (Fri, 13 Jul 2007) - clee - Added file.
32
33
34 */
35
36
37 /**
38  * Smarty plugin
39  * @package Smarty
40  * @subpackage plugins
41  */
42
43
44 /**
45  * Smarty strip_semicolon modifier plugin
46  *
47  * Type:     modifier<br>
48  * Name:     strip<br>
49  * Purpose:  Replace strings with trailing semicolon with blank string
50  * @author   Collin Lee
51  * @version  1.0
52  * @param string
53  * @return string
54  */
55 function smarty_modifier_strip_semicolon($text)
56 {
57         return preg_replace("/([:]|\xEF\xBC\x9A)[\\s]*$/", '', trim($text));
58 }
59 ?>