2005/3/27 22:53
wdsl1
Just popping in
Posts: 39
Since: 2004/11/3
2005/3/28 0:21
Mithrandir
XOOPS is my life!
Posts: 6320
Since: 2003/6/21
2005/3/28 21:52
2005/4/8 19:16
2006/3/12 18:47
PTlooker
Just can't stay away
Posts: 447
Since: 2003/6/15
2006/3/12 19:18
?>
2006/3/12 19:22
2006/9/8 10:34
canbula
Posts: 42
Since: 2006/7/10
2006/9/11 22:05
function geshi_highlight( $source, $language ) { $source = str_replace('"', '"', $source); include_once(XOOPS_ROOT_PATH . '/class/geshi.php'); $language = strtolower($language); $source = $this->undoHtmlSpecialChars($source); // Create the new GeSHi object, passing relevant stuff $geshi = new GeSHi($source, $language, XOOPS_ROOT_PATH . '/class/geshi/'); // Enclose the code in a $geshi->set_header_type(GESHI_HEADER_PRE); // Turn CSS classes on to reduce output code size $geshi->enable_classes(); // Parse the code $code = $geshi->parse_code(); // Remove 's added by GeSHi - they are added by phpBB later anyway $code = str_replace('', '', $code); return $code; } I made some changes and now the hack is cool following chars; function geshi_highlight( $source, $language ) { $source = str_replace('"', '"', $source); include_once(XOOPS_ROOT_PATH . '/class/geshi.php'); $language = strtolower($language); $source = $this->undoHtmlSpecialChars($source); // Create the new GeSHi object, passing relevant stuff $geshi = new GeSHi($source, $language, XOOPS_ROOT_PATH . '/class/geshi/'); // Enclose the code in a $geshi->set_header_type(GESHI_HEADER_PRE); // Turn CSS classes on to reduce output code size $geshi->enable_classes(); // Parse the code $code = $geshi->parse_code(); // Remove 's added by GeSHi - they are added by phpBB later anyway $code = str_replace('', '', $code); // Added By Bora Canbula to show Turkish chars $code = str_replace('ð', 'ğ', $code); $code = str_replace('ý', 'ı', $code); $code = str_replace('þ', 'ş', $code); $code = str_replace('Ð', 'Ğ', $code); $code = str_replace('Ý', 'I', $code); $code = str_replace('Þ', 'Ş', $code); return $code; } that's all..if anybody has a problem in his own language..can do the same thing[/code] hhttp://www.xoops-tr.com - Turkish Xoops
function geshi_highlight( $source, $language ) { $source = str_replace('"', '"', $source); include_once(XOOPS_ROOT_PATH . '/class/geshi.php'); $language = strtolower($language); $source = $this->undoHtmlSpecialChars($source); // Create the new GeSHi object, passing relevant stuff $geshi = new GeSHi($source, $language, XOOPS_ROOT_PATH . '/class/geshi/'); // Enclose the code in a $geshi->set_header_type(GESHI_HEADER_PRE); // Turn CSS classes on to reduce output code size $geshi->enable_classes(); // Parse the code $code = $geshi->parse_code(); // Remove 's added by GeSHi - they are added by phpBB later anyway $code = str_replace('', '', $code); // Added By Bora Canbula to show Turkish chars $code = str_replace('ð', 'ğ', $code); $code = str_replace('ý', 'ı', $code); $code = str_replace('þ', 'ş', $code); $code = str_replace('Ð', 'Ğ', $code); $code = str_replace('Ý', 'I', $code); $code = str_replace('Þ', 'Ş', $code); return $code; } that's all..if anybody has a problem in his own language..can do the same thing[/code]
Advanced Search
448 user(s) are online (331 user(s) are browsing Support Forums)
Members: 0
Guests: 448