aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-02-21 23:13:03 -0800
committerfriendica <info@friendica.com>2012-02-21 23:13:03 -0800
commit91c334902565b2ceb7fd26735b4d501973e28557 (patch)
tree14723d17b6fdaee49fd7351438f26bf3d52c111d /include/text.php
parentf03aaf554e32fa528b0f1b1068db0824efb77e07 (diff)
downloadvolse-hubzilla-91c334902565b2ceb7fd26735b4d501973e28557.tar.gz
volse-hubzilla-91c334902565b2ceb7fd26735b4d501973e28557.tar.bz2
volse-hubzilla-91c334902565b2ceb7fd26735b4d501973e28557.zip
escape smiley conversion in code and pre blocks
Diffstat (limited to 'include/text.php')
-rwxr-xr-xinclude/text.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/text.php b/include/text.php
index 5ef870fd7..38ac58a6c 100755
--- a/include/text.php
+++ b/include/text.php
@@ -681,6 +681,9 @@ if(! function_exists('smilies')) {
function smilies($s, $sample = false) {
$a = get_app();
+ $s = preg_replace_callback('/<pre>(.*?)<\/pre>/ism','smile_encode',$s);
+ $s = preg_replace_callback('/<code>(.*?)<\/code>/ism','smile_encode',$s);
+
$texts = array(
'&lt;3',
'&lt;/3',
@@ -777,10 +780,24 @@ function smilies($s, $sample = false) {
$s = str_replace($params['texts'],$params['icons'],$params['string']);
}
+ $s = preg_replace_callback('/<pre>(.*?)<\/pre>/ism','smile_decode',$s);
+ $s = preg_replace_callback('/<code>(.*?)<\/code>/ism','smile_decode',$s);
+
return $s;
}}
+function smile_encode($m) {
+ return(str_replace($m[1],base64url_encode($m[1]),$m[0]));
+}
+
+function smile_decode($m) {
+ return(str_replace($m[1],base64url_decode($m[1]),$m[0]));
+}
+
+
+
+
if(! function_exists('day_translate')) {
function day_translate($s) {
$ret = str_replace(array('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday'),