-
Notifications
You must be signed in to change notification settings - Fork 10
/
moresmiles.php
51 lines (51 loc) · 2.15 KB
/
moresmiles.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* ------- U-232 Codename Trinity ----------*
* ---------------------------------------------*
* -------- @authors U-232 Team --------------*
* ---------------------------------------------*
* ----- @site https://u-232.duckdns.org/ ----*
* ---------------------------------------------*
* ----- @copyright 2020 U-232 Team ----------*
* ---------------------------------------------*
* ------------ @version V6 ------------------*
*/
require_once(__DIR__.DIRECTORY_SEPARATOR.'include'.DIRECTORY_SEPARATOR.'bittorrent.php');
require_once INCL_DIR.'bbcode_functions.php';
dbconn(false);
$lang = array_merge(load_language('global'));
loggedinorreturn();
$htmlout = '';
$htmlout = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"
\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta name='generator' content='U-232' />
<meta name='MSSmartTagsPreventParsing' content='TRUE' />
<title>More Smilies</title>
<link rel='stylesheet' href='./templates/".$CURUSER['stylesheet']."/".$CURUSER['stylesheet'].".css' type='text/css' />
</head>
<body>
<script type='text/javascript'>
function SmileIT(smile,form,text){
window.opener.document.forms[form].elements[text].value = window.opener.document.forms[form].elements[text].value+' '+smile+' ';
window.opener.document.forms[form].elements[text].focus();
window.close();
}
</script>
<table class='list' width='100%' cellpadding='1' cellspacing='1'>";
$count = is_countable($smilies) ? count($smilies) : 0;
foreach ($smilies as $code => $url) {
if ($count % 3 == 0) {
$htmlout .= " \n<tr>";
}
$htmlout .= "\n\t<td class=\"list\" align=\"center\"><a href=\"javascript: SmileIT('".str_replace("'", "\'",
$code)."','".htmlsafechars($_GET["form"])."','".htmlsafechars($_GET["text"])."')\"><img border='0' src='./pic/smilies/".$url."' alt='' /></a></td>";
$count++;
if ($count % 3 == 0) {
$htmlout .= "\n</tr>";
}
}
$htmlout .= "</table><div align='center'><a href='javascript: window.close()'>[ Close Window ]</a></div></body></html>";
echo $htmlout;
?>