* move the parseUBB() to ubb.class.php.
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
* @version $Id$
|
||||
* @link http://www.zentao.net
|
||||
*/
|
||||
|
||||
/**
|
||||
* The html class, to build html tags.
|
||||
*
|
||||
@@ -155,7 +156,7 @@ class html
|
||||
$string .= "<optgroup label='$groupName'>\n";
|
||||
foreach($options as $key => $value)
|
||||
{
|
||||
$key = str_replace('item', '', $key); // 因为对象的元素不能为数字,所以需要在配置里面会在数字前面添加item,这个地方将item去掉。
|
||||
$key = str_replace('item', '', $key);
|
||||
$selected = strpos($selectedItems, ",$key,") !== false ? " selected='selected'" : '';
|
||||
$string .= "<option value='$key'$selected>$value</option>\n";
|
||||
}
|
||||
@@ -342,176 +343,6 @@ class html
|
||||
{
|
||||
return " <input type='button' value='$label' class='button-c' $misc onclick='location.href=\"$link\"' /> ";
|
||||
}
|
||||
|
||||
/**
|
||||
* create a export link.
|
||||
*
|
||||
* @param string $label
|
||||
* @param string $pluginTitle
|
||||
* @param string $misc
|
||||
* @static
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
public static function export2csv($label = '', $pluginTitle, $misc = '')
|
||||
{
|
||||
return "<a href='#' onclick=\"$('.datatable').table2CSV({title:'$pluginTitle'})\" $misc />$label</a>\n<div id='exporter' class='hidden'></div>\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* ubb2html support for php
|
||||
* @requires xhEditor
|
||||
*
|
||||
* @author Yanis.Wang<yanis.wang@gmail.com>
|
||||
* @site http://xheditor.com/
|
||||
* @licence LGPL(http://www.opensource.org/licenses/lgpl-license.php)
|
||||
*
|
||||
* @Version: 0.9.8 (build 100505)
|
||||
*/
|
||||
public static function parseUBB($sUBB)
|
||||
{
|
||||
$sHtml=$sUBB;
|
||||
|
||||
global $emotPath,$cnum,$arrcode,$bUbb2htmlFunctionInit;$cnum=0;$arrcode=array();
|
||||
$emotPath='../xheditor_emot/';
|
||||
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function saveCodeArea($match)
|
||||
{
|
||||
global $cnum,$arrcode;
|
||||
$cnum++;$arrcode[$cnum]=$match[0];
|
||||
return "[\tubbcodeplace_".$cnum."\t]";
|
||||
}
|
||||
}
|
||||
|
||||
$sHtml=preg_replace_callback('/\[code\s*(?:=\s*((?:(?!")[\s\S])+?)(?:"[\s\S]*?)?)?\]([\s\S]*?)\[\/code\]/i','saveCodeArea',$sHtml);
|
||||
|
||||
//$sHtml=preg_replace("/&/",'&',$sHtml);
|
||||
//$sHtml=preg_replace("/</",'<',$sHtml);
|
||||
//$sHtml=preg_replace("/>/",'>',$sHtml);
|
||||
$sHtml=preg_replace("/\r?\n/",'<br />',$sHtml);
|
||||
|
||||
$sHtml=preg_replace("/\[(\/?)(b|u|i|s|sup|sub)\]/i",'<$1$2>',$sHtml);
|
||||
$sHtml=preg_replace('/\[color\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]/i','<span style="color:$1;">',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getSizeName($match)
|
||||
{
|
||||
$arrSize=array('8pt','10pt','12pt','14pt','18pt','24pt','36pt');
|
||||
return '<span style="font-size:'.$arrSize[$match[1]-1].';">';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback("/\[size\s*=\s*(\d+?)\s*\]/i",'getSizeName',$sHtml);
|
||||
$sHtml=preg_replace('/\[font\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]/i','<span style="font-family:$1;">',$sHtml);
|
||||
$sHtml=preg_replace('/\[back\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]/i','<span style="background-color:$1;">',$sHtml);
|
||||
$sHtml=preg_replace("/\[\/(color|size|font|back)\]/i",'</span>',$sHtml);
|
||||
|
||||
for($i=0;$i<3;$i++)$sHtml=preg_replace('/\[align\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\](((?!\[align(?:\s+[^\]]+)?\])[\s\S])*?)\[\/align\]/','<p align="$1">$2</p>',$sHtml);
|
||||
$sHtml=preg_replace('/\[img\]\s*(((?!")[\s\S])+?)(?:"[\s\S]*?)?\s*\[\/img\]/i','<img src="$1" alt="" />',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getImg($match)
|
||||
{
|
||||
$alt=$match[1];$p1=$match[2];$p2=$match[3];$p3=$match[4];$src=$match[5];
|
||||
$a=$p3?$p3:(!is_numeric($p1)?$p1:'');
|
||||
return '<img src="'.$src.'" alt="'.$alt.'"'.(is_numeric($p1)?' width="'.$p1.'"':'').(is_numeric($p2)?' height="'.$p2.'"':'').($a?' align="'.$a.'"':'').' />';
|
||||
}
|
||||
}
|
||||
|
||||
$sHtml=preg_replace_callback('/\[img\s*=([^,\]]*)(?:\s*,\s*(\d*%?)\s*,\s*(\d*%?)\s*)?(?:,?\s*(\w+))?\s*\]\s*(((?!")[\s\S])+?)(?:"[\s\S]*)?\s*\[\/img\]/i','getImg',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getEmot($match)
|
||||
{
|
||||
global $emotPath;
|
||||
$arr=split(',',$match[1]);
|
||||
if(!isset($arr[1])){$arr[1]=$arr[0];$arr[0]='default';}
|
||||
$path=$emotPath.$arr[0].'/'.$arr[1].'.gif';
|
||||
return '<img src="'.$path.'" alt="'.$arr[1].'" />';
|
||||
}
|
||||
}
|
||||
|
||||
$sHtml=preg_replace_callback('/\[emot\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\/\]/i','getEmot',$sHtml);
|
||||
$sHtml=preg_replace('/\[url\]\s*(((?!")[\s\S])*?)(?:"[\s\S]*?)?\s*\[\/url\]/i','<a href="$1">$1</a>',$sHtml);
|
||||
$sHtml=preg_replace('/\[url\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]\s*([\s\S]*?)\s*\[\/url\]/i','<a href="$1">$2</a>',$sHtml);
|
||||
$sHtml=preg_replace('/\[email\]\s*(((?!")[\s\S])+?)(?:"[\s\S]*?)?\s*\[\/email\]/i','<a href="mailto:$1">$1</a>',$sHtml);
|
||||
$sHtml=preg_replace('/\[email\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]\s*([\s\S]+?)\s*\[\/email\]/i','<a href="mailto:$1">$2</a>',$sHtml);
|
||||
$sHtml=preg_replace("/\[quote\]([\s\S]*?)\[\/quote\]/i",'<blockquote>$1</blockquote>',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getFlash($match)
|
||||
{
|
||||
$w=$match[1];$h=$match[2];$url=$match[3];
|
||||
if(!$w)$w=480;if(!$h)$h=400;
|
||||
return '<embed type="application/x-shockwave-flash" src="'.$url.'" wmode="opaque" quality="high" bgcolor="#ffffff" menu="false" play="true" loop="true" width="'.$w.'" height="'.$h.'" />';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/\[flash\s*(?:=\s*(\d+)\s*,\s*(\d+)\s*)?\]\s*(((?!")[\s\S])+?)(?:"[\s\S]*?)?\s*\[\/flash\]/i','getFlash',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getMedia($match)
|
||||
{
|
||||
$w=$match[1];$h=$match[2];$play=$match[3];$url=$match[4];
|
||||
if(!$w)$w=480;if(!$h)$h=400;
|
||||
return '<embed type="application/x-mplayer2" src="'.$url.'" enablecontextmenu="false" autostart="'.($play=='1'?'true':'false').'" width="'.$w.'" height="'.$h.'" />';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/\[media\s*(?:=\s*(\d+)\s*,\s*(\d+)\s*(?:,\s*(\d+)\s*)?)?\]\s*(((?!")[\s\S])+?)(?:"[\s\S]*?)?\s*\[\/media\]/i','getMedia',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getTable($match)
|
||||
{
|
||||
return '<table'.(isset($match[1])?' width="'.$match[1].'"':'').(isset($match[2])?' bgcolor="'.$match[2].'"':'').'>';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/\[table\s*(?:=(\d{1,4}%?)\s*(?:,\s*([^\]"]+)(?:"[^\]]*?)?)?)?\s*\]/i','getTable',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getTR($match){return '<tr'.(isset($match[1])?' bgcolor="'.$match[1].'"':'').'>';}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/\[tr\s*(?:=(\s*[^\]"]+))?(?:"[^\]]*?)?\s*\]/i','getTR',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getTD($match)
|
||||
{
|
||||
$col=isset($match[1])?$match[1]:0;$row=isset($match[2])?$match[2]:0;$w=isset($match[3])?$match[3]:null;
|
||||
return '<td'.($col>1?' colspan="'.$col.'"':'').($row>1?' rowspan="'.$row.'"':'').($w?' width="'.$w.'"':'').'>';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback("/\[td\s*(?:=\s*(\d{1,2})\s*,\s*(\d{1,2})\s*(?:,\s*(\d{1,4}%?))?)?\s*\]/i",'getTD',$sHtml);
|
||||
$sHtml=preg_replace("/\[\/(table|tr|td)\]/i",'</$1>',$sHtml);
|
||||
$sHtml=preg_replace("/\[\*\]((?:(?!\[\*\]|\[\/list\]|\[list\s*(?:=[^\]]+)?\])[\s\S])+)/i",'<li>$1</li>',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getUL($match)
|
||||
{
|
||||
$str='<ul';
|
||||
if(isset($match[1]))$str.=' type="'.$match[1].'"';
|
||||
return $str.'>';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/\[list\s*(?:=\s*([^\]"]+))?(?:"[^\]]*?)?\s*\]/i','getUL',$sHtml);
|
||||
$sHtml=preg_replace("/\[\/list\]/i",'</ul>',$sHtml);
|
||||
|
||||
for($i=1;$i<=$cnum;$i++)$sHtml=str_replace("[\tubbcodeplace_".$i."\t]", $arrcode[$i],$sHtml);
|
||||
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function fixText($match)
|
||||
{
|
||||
$text=$match[2];
|
||||
$text=preg_replace("/\t/",' ',$text);
|
||||
$text=preg_replace("/ /",' ',$text);
|
||||
return $match[1].$text;
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/(^|<\/?\w+(?:\s+[^>]*?)?>)([^<$]+)/i','fixText',$sHtml);
|
||||
|
||||
$bUbb2htmlFunctionInit=true;
|
||||
|
||||
return $sHtml;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
158
lib/ubb/ubb.class.php
Normal file
158
lib/ubb/ubb.class.php
Normal file
@@ -0,0 +1,158 @@
|
||||
<?php
|
||||
/**
|
||||
* ubb2html support for php
|
||||
* @requires xhEditor
|
||||
*
|
||||
* @author Yanis.Wang<yanis.wang@gmail.com>
|
||||
* @site http://xheditor.com/
|
||||
* @licence LGPL(http://www.opensource.org/licenses/lgpl-license.php)
|
||||
*
|
||||
* @Version: 0.9.8 (build 100505)
|
||||
*/
|
||||
class ubb
|
||||
{
|
||||
public static function parseUBB($sUBB)
|
||||
{
|
||||
$sHtml=$sUBB;
|
||||
|
||||
global $emotPath,$cnum,$arrcode,$bUbb2htmlFunctionInit;$cnum=0;$arrcode=array();
|
||||
$emotPath='../xheditor_emot/';
|
||||
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function saveCodeArea($match)
|
||||
{
|
||||
global $cnum,$arrcode;
|
||||
$cnum++;$arrcode[$cnum]=$match[0];
|
||||
return "[\tubbcodeplace_".$cnum."\t]";
|
||||
}
|
||||
}
|
||||
|
||||
$sHtml=preg_replace_callback('/\[code\s*(?:=\s*((?:(?!")[\s\S])+?)(?:"[\s\S]*?)?)?\]([\s\S]*?)\[\/code\]/i','saveCodeArea',$sHtml);
|
||||
|
||||
//$sHtml=preg_replace("/&/",'&',$sHtml);
|
||||
//$sHtml=preg_replace("/</",'<',$sHtml);
|
||||
//$sHtml=preg_replace("/>/",'>',$sHtml);
|
||||
$sHtml=preg_replace("/\r?\n/",'<br />',$sHtml);
|
||||
|
||||
$sHtml=preg_replace("/\[(\/?)(b|u|i|s|sup|sub)\]/i",'<$1$2>',$sHtml);
|
||||
$sHtml=preg_replace('/\[color\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]/i','<span style="color:$1;">',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getSizeName($match)
|
||||
{
|
||||
$arrSize=array('8pt','10pt','12pt','14pt','18pt','24pt','36pt');
|
||||
return '<span style="font-size:'.$arrSize[$match[1]-1].';">';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback("/\[size\s*=\s*(\d+?)\s*\]/i",'getSizeName',$sHtml);
|
||||
$sHtml=preg_replace('/\[font\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]/i','<span style="font-family:$1;">',$sHtml);
|
||||
$sHtml=preg_replace('/\[back\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]/i','<span style="background-color:$1;">',$sHtml);
|
||||
$sHtml=preg_replace("/\[\/(color|size|font|back)\]/i",'</span>',$sHtml);
|
||||
|
||||
for($i=0;$i<3;$i++)$sHtml=preg_replace('/\[align\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\](((?!\[align(?:\s+[^\]]+)?\])[\s\S])*?)\[\/align\]/','<p align="$1">$2</p>',$sHtml);
|
||||
$sHtml=preg_replace('/\[img\]\s*(((?!")[\s\S])+?)(?:"[\s\S]*?)?\s*\[\/img\]/i','<img src="$1" alt="" />',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getImg($match)
|
||||
{
|
||||
$alt=$match[1];$p1=$match[2];$p2=$match[3];$p3=$match[4];$src=$match[5];
|
||||
$a=$p3?$p3:(!is_numeric($p1)?$p1:'');
|
||||
return '<img src="'.$src.'" alt="'.$alt.'"'.(is_numeric($p1)?' width="'.$p1.'"':'').(is_numeric($p2)?' height="'.$p2.'"':'').($a?' align="'.$a.'"':'').' />';
|
||||
}
|
||||
}
|
||||
|
||||
$sHtml=preg_replace_callback('/\[img\s*=([^,\]]*)(?:\s*,\s*(\d*%?)\s*,\s*(\d*%?)\s*)?(?:,?\s*(\w+))?\s*\]\s*(((?!")[\s\S])+?)(?:"[\s\S]*)?\s*\[\/img\]/i','getImg',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getEmot($match)
|
||||
{
|
||||
global $emotPath;
|
||||
$arr=split(',',$match[1]);
|
||||
if(!isset($arr[1])){$arr[1]=$arr[0];$arr[0]='default';}
|
||||
$path=$emotPath.$arr[0].'/'.$arr[1].'.gif';
|
||||
return '<img src="'.$path.'" alt="'.$arr[1].'" />';
|
||||
}
|
||||
}
|
||||
|
||||
$sHtml=preg_replace_callback('/\[emot\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\/\]/i','getEmot',$sHtml);
|
||||
$sHtml=preg_replace('/\[url\]\s*(((?!")[\s\S])*?)(?:"[\s\S]*?)?\s*\[\/url\]/i','<a href="$1">$1</a>',$sHtml);
|
||||
$sHtml=preg_replace('/\[url\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]\s*([\s\S]*?)\s*\[\/url\]/i','<a href="$1">$2</a>',$sHtml);
|
||||
$sHtml=preg_replace('/\[email\]\s*(((?!")[\s\S])+?)(?:"[\s\S]*?)?\s*\[\/email\]/i','<a href="mailto:$1">$1</a>',$sHtml);
|
||||
$sHtml=preg_replace('/\[email\s*=\s*([^\]"]+?)(?:"[^\]]*?)?\s*\]\s*([\s\S]+?)\s*\[\/email\]/i','<a href="mailto:$1">$2</a>',$sHtml);
|
||||
$sHtml=preg_replace("/\[quote\]([\s\S]*?)\[\/quote\]/i",'<blockquote>$1</blockquote>',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getFlash($match)
|
||||
{
|
||||
$w=$match[1];$h=$match[2];$url=$match[3];
|
||||
if(!$w)$w=480;if(!$h)$h=400;
|
||||
return '<embed type="application/x-shockwave-flash" src="'.$url.'" wmode="opaque" quality="high" bgcolor="#ffffff" menu="false" play="true" loop="true" width="'.$w.'" height="'.$h.'" />';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/\[flash\s*(?:=\s*(\d+)\s*,\s*(\d+)\s*)?\]\s*(((?!")[\s\S])+?)(?:"[\s\S]*?)?\s*\[\/flash\]/i','getFlash',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getMedia($match)
|
||||
{
|
||||
$w=$match[1];$h=$match[2];$play=$match[3];$url=$match[4];
|
||||
if(!$w)$w=480;if(!$h)$h=400;
|
||||
return '<embed type="application/x-mplayer2" src="'.$url.'" enablecontextmenu="false" autostart="'.($play=='1'?'true':'false').'" width="'.$w.'" height="'.$h.'" />';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/\[media\s*(?:=\s*(\d+)\s*,\s*(\d+)\s*(?:,\s*(\d+)\s*)?)?\]\s*(((?!")[\s\S])+?)(?:"[\s\S]*?)?\s*\[\/media\]/i','getMedia',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getTable($match)
|
||||
{
|
||||
return '<table'.(isset($match[1])?' width="'.$match[1].'"':'').(isset($match[2])?' bgcolor="'.$match[2].'"':'').'>';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/\[table\s*(?:=(\d{1,4}%?)\s*(?:,\s*([^\]"]+)(?:"[^\]]*?)?)?)?\s*\]/i','getTable',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getTR($match){return '<tr'.(isset($match[1])?' bgcolor="'.$match[1].'"':'').'>';}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/\[tr\s*(?:=(\s*[^\]"]+))?(?:"[^\]]*?)?\s*\]/i','getTR',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getTD($match)
|
||||
{
|
||||
$col=isset($match[1])?$match[1]:0;$row=isset($match[2])?$match[2]:0;$w=isset($match[3])?$match[3]:null;
|
||||
return '<td'.($col>1?' colspan="'.$col.'"':'').($row>1?' rowspan="'.$row.'"':'').($w?' width="'.$w.'"':'').'>';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback("/\[td\s*(?:=\s*(\d{1,2})\s*,\s*(\d{1,2})\s*(?:,\s*(\d{1,4}%?))?)?\s*\]/i",'getTD',$sHtml);
|
||||
$sHtml=preg_replace("/\[\/(table|tr|td)\]/i",'</$1>',$sHtml);
|
||||
$sHtml=preg_replace("/\[\*\]((?:(?!\[\*\]|\[\/list\]|\[list\s*(?:=[^\]]+)?\])[\s\S])+)/i",'<li>$1</li>',$sHtml);
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function getUL($match)
|
||||
{
|
||||
$str='<ul';
|
||||
if(isset($match[1]))$str.=' type="'.$match[1].'"';
|
||||
return $str.'>';
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/\[list\s*(?:=\s*([^\]"]+))?(?:"[^\]]*?)?\s*\]/i','getUL',$sHtml);
|
||||
$sHtml=preg_replace("/\[\/list\]/i",'</ul>',$sHtml);
|
||||
|
||||
for($i=1;$i<=$cnum;$i++)$sHtml=str_replace("[\tubbcodeplace_".$i."\t]", $arrcode[$i],$sHtml);
|
||||
|
||||
if(!$bUbb2htmlFunctionInit)
|
||||
{
|
||||
function fixText($match)
|
||||
{
|
||||
$text=$match[2];
|
||||
$text=preg_replace("/\t/",' ',$text);
|
||||
$text=preg_replace("/ /",' ',$text);
|
||||
return $match[1].$text;
|
||||
}
|
||||
}
|
||||
$sHtml=preg_replace_callback('/(^|<\/?\w+(?:\s+[^>]*?)?>)([^<$]+)/i','fixText',$sHtml);
|
||||
|
||||
$bUbb2htmlFunctionInit=true;
|
||||
|
||||
return $sHtml;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user