Home » Support Forums for PMBT 2.X » PMBT 2.X Themes » vista
| |
| Re: vista [message #3038 is a reply to message #3034] |
Sat, 24 October 2009 04:38   |
|
change the main.php with this one
<?php
/*
*-------------------------------phpMyBitTorrent--------------------------------*
*--- The Ultimate BitTorrent Tracker and BMS (Bittorrent Management System) ---*
*-------------- Created By Antonio Anzivino (aka DJ Echelon) --------------*
*------------- http://www.p2pmania.it -------------*
*------------ Based on the Bit Torrent Protocol made by Bram Cohen ------------*
*------------- http://www.bittorrent.com -------------*
*------------------------------------------------------------------------------*
*------------------------------------------------------------------------------*
*-- This program is free software; you can redistribute it and/or modify --*
*-- it under the terms of the GNU General Public License as published by --*
*-- the Free Software Foundation; either version 2 of the License, or --*
*-- (at your option) any later version. --*
*-- --*
*-- This program is distributed in the hope that it will be useful, --*
*-- but WITHOUT ANY WARRANTY; without even the implied warranty of --*
*-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --*
*-- GNU General Public License for more details. --*
*-- --*
*-- You should have received a copy of the GNU General Public License --*
*-- along with this program; if not, write to the Free Software --*
*-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --*
*-- --*
*------------------------------------------------------------------------------*
*------ ©2005 phpMyBitTorrent Development Team ------*
*----------- http://phpmybittorrent.com -----------*
*------------------------------------------------------------------------------*
*/
if (eregi("main.php",$_SERVER["PHP_SELF"])) die ("You can't access this file directly");
$tableopen = false;
$errtableopen = false;
$table2open = false;
$btback1 = "4EE2EC";
$btback2 = "48CCCD";
$btback3 = "43C6DB";
function OpenTable($title = "title") {
//include_once'include/cCore.php';
global $tableopen, $extitle;
$img2 = 'minus';
if ($tableopen) return;
if (isset($id_pedido) AND $id_pedido == $title) $mostrartable = '';
$extitle = strip_tags($title);
$extitle = str_replace(' ','_',$extitle);
$extitle = str_replace('/','_',$extitle);
$extitle = str_replace("'",'_',$extitle);
$extitle = str_replace("?",'_',$extitle);
if (!isset($id_pedido) AND $_COOKIE['nn'.$extitle] !='') $mostrartable = 'style="display: '.$_COOKIE['nn'.$extitle].';';
else $mostrartable = '';
echo "<table cellpadding=\"5\" cellspacing=\"0\" width=\"100%\" align=\"center\" class=\"tableoutborder\"><tr><td valign=\"top\" width=\"100%\">
<table cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" class=\"tableinborder\">
<tr> <td width=\"100%\" class=\"obenmitte\"><center><span class=\"normalfont\"><a class=\"c4\" style=\"cursor: pointer;\" onclick=\"toggle2('nn".$extitle."');\"><img title=\"Expand item\" id=\"nn".$extitle."img\" src=\"themes/vista/pics/".$img2.".gif\" alt=\"+\"></a> <b>".$title."</b></span></center></td> </tr>
<tr><td width=\"100%\" class=\"tablea\"><div id=\"nn".$extitle."\" ".$mostrartable."\">";
$tableopen = true;
}
function CloseTable() {
global $tableopen, $mostrartable;
if (!$tableopen) return;
echo '</div></td></tr></table>
</td></tr></table>';
echo "";
$mostrartable = '';
$img2 = 'minus';
$tableopen = false;
}
function OpenTable2($title = "") {
global $table2open;
if ($table2open) return;
echo "<table cellpadding=\"0\" cellspacing=\"1\" style=\"border:1px solid #006699\" align=\"center\">\n";
if ($title != "") {
echo "<tr><td class=\"title\"><h3 class=\"title\"><b>".$title."</b></h3></td></tr>";
}
echo "<tr><td>";
$table2open = true;
}
function CloseTable2() {
global $table2open;
if (!$table2open) return;
echo "</td></tr>\n</table>";
$table2open = false;
}
function OpenErrTable($title) {
echo "<table cellpadding=\"0\" cellspacing=\"1\" style=\"border:1px solid #FF0000\" width=\"100%\" align=\"center\">\n";
echo "<tr><td class=\"title\" align=\"center\" bgcolor=\"#FF0000\"><h3><img src=\"themes/Hypercube/pics/error.gif\" alt=\"Error!!\"><b>".$title."</b></h3></td></tr>\n<tr><td>";
}
function CloseErrTable() {
echo "</td></tr>\n</table>";
}
function OpenMessTable($title = "", $tablewidth = "") {
global $tableopen, $siteurl;
if ($tablewidth != "") {
$tablewidth = "100%";
} else {
$tablewidth .= "px";
}
if ($tableopen) return;
echo "<div id=\"messagebox\" style=\"width: ".$tablewidth.";\"> ";
echo "<span class=\"messagebox-title\">".$title."</span>";
$tableopen = true;
}
function CloseMessTable() {
global $tableopen, $siteurl;
if (!$tableopen) return;
echo "</div>";
$tableopen = false;
}
function OpenSuccTable($title = "") {
global $tableopen, $siteurl;
if ($tableopen) return;
if ($tablewidth != "") {
$tablewidth = "100%";
} else {
$tablewidth .= "px";
}
echo "<div id=\"successbox\" style=\"width: ".$tablewidth.";\"> ";
echo "<span class=\"successbox-title\">".$title."</span>";
$tableopen = true;
}
function CloseSuccTable() {
global $tableopen, $siteurl;
if (!$tableopen) return;
echo "</div>";
$tableopen = false;
}
function themechange(){
{
global $bttheme;
$themes = Array();
$thememaindir = "themes";
$themehandle = opendir($thememaindir);
while ($themedir = readdir($themehandle)) {
if (is_dir($thememaindir."/".$themedir) AND $themedir != "." AND $themedir != ".." AND $themedir != "CVS")
$themes[$themedir] = $themedir;
}
closedir($themehandle);
unset($thememaindir,$themedir);
}
$change = '';
foreach ($themes as $key=>$val) {
$change .= "<option ";
if ($bttheme == $key) $change .="selected ";
$change .= "value=\"".$key."\">".$val."</option>\n";
}
unset($themes);
return $change;
}
function languagechange(){
{
global $language;
$languages = Array();
$langdir = "language";
$langhandle = opendir($langdir);
while ($langfile = readdir($langhandle)) {
if (eregi("\.php$",$langfile) AND strtolower($langfile) != "mailtexts.php")
$languages[str_replace(".php","",$langfile)] = ucwords(str_replace(".php","",$langfile));
}
closedir($langhandle);
unset($langdir,$langfile);
}
$change = '';
foreach ($languages as $key=>$val) {
$change .="<option ";
if ($language == $key) $change .="selected";
$change .=" value=\"".$key."\">".$val."</option>\n";
}
unset($languages);
return $change;
}
function themeheader() {
global $db, $db_prefix, $theme, $siteurl, $user, $upload_level, $sitename, $gfx_check, $donations, $INVITEONLY,$onlysearch, $pivate_mode, $forumshare, $PHP_SELF;
//header("Content-Type: text/html; charset=utf-8");
if ($user->user) {
//Update online user list
$pagename = substr($_SERVER["PHP_SELF"],strrpos($_SERVER["PHP_SELF"],"/")+1);
$sqlupdate = "UPDATE ".$db_prefix."_online_users SET page = '".addslashes($pagename)."', last_action = NOW() WHERE id = ".$user->id.";";
$sqlinsert = "INSERT INTO ".$db_prefix."_online_users VALUES ('".$user->id."','".addslashes($pagename)."', NOW(), NOW())";
$res = $db->sql_query($sqlupdate);
if (!$db->sql_affectedrows($res)) $db->sql_query($sqlinsert);
}
$who = "".getusername($btuser)."";
$timestamp=time();
$timeout=$timestamp-$timeoutseconds=86400;
$vtd = "INSERT INTO 24hourvist VALUES ('$who','$timestamp','".getip()."','".$PHP_SELF."')";
$vtdud = "UPDATE 24hourvist SET user = '$who', timestamp = '$timestamp', file = '".$PHP_SELF."' WHERE ip = '".getip()."'";
$restd = $db->sql_query($vtdud);
if (!$db->sql_affectedrows($restd)) $db->sql_query($vtd);
$db->sql_query("DELETE FROM 24hourvist WHERE timestamp<$timeout");
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
echo "<html>\n";
echo "<head>\n";
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\" />\n";
echo "<meta name=\"generator\" content=\"PMBT 2.0.2\" />\n";
echo "<meta http-equiv=\"Pragma\" content=\"no-cache\" />\n";
echo "<meta http-equiv=\"Expires\" content=\"-1\" />\n";
echo "<meta http-equiv=\"Cache-Control\" content=\"no-cache\" />\n";
echo"<script type=\"text/javascript\" language=\"JavaScript\" src=\"$siteurl/bbcode.js\"></script>\n";
echo "<!--[if lt IE 7]><script defer type=\"text/javascript\" src=\"$siteurl/pngfix.js\"></script><![endif]-->\n";
echo "<title>".$sitename."</title>\n";
?>
<script type="text/javascript">
pmbtsite_url = "<?php echo $siteurl; ?>";
tag_prompt = "<?php echo _bb_tag_prompt; ?>";
img_prompt = "<?php echo _bb_img_prompt; ?>";
font_formatter_prompt = "<?php echo _bb_font_formatter_prompt; ?>";
link_text_prompt = "<?php echo _bb_link_text_prompt; ?>";
link_url_prompt = "<?php echo _bb_link_url_prompt; ?>";
link_email_prompt = "<?php echo _bb_link_email_prompt; ?>";
list_type_prompt = "<?php echo _bb_list_type_prompt; ?>";
list_item_prompt = "<?php echo _bb_list_item_prompt; ?>";
_btshoutnowprivate = "<?php echo _btshoutnowprivate; ?>";
</script>
<?php
if (is_readable("themes/$theme/favicon.ico")) {
echo "<link REL=\"shortcut icon\" HREF=\"$siteurl/themes/".$theme."/favicon.ico\" TYPE=\"image/x-icon\">\n";
}
if (!$onlysearch) {
echo "<link rel=\"alternate\" type=\"application/rss+xml\" title=\"Last Torrents\" href=\"$siteurl/backend.php?op=last\">\n";
echo "<link rel=\"alternate\" type=\"application/rss+xml\" title=\"Best Torrents\" href=\"$siteurl/backend.php?op=best\">\n";
}
if (is_readable("themes/$theme/style.css"))echo "<link rel=\"StyleSheet\" href=\"$siteurl/themes/$theme/style.css\" type=\"text/css\">\n<script type=\"text/javascript\" src=\"$siteurl/global.js\"></script>\n";
overlib_init();
echo "</head>\n\n";
$themepage = false;
if($user->user)echo "<body onload=\"shoutthis_ajax()\">\n";
else
echo "<body>\n";
function newuserpage($page)
{
if(eregi("user.php",$page))return true;
if(eregi("takeconfirminvite.php",$page))return true;
if(eregi("confirminvite.php",$page))return true;
return false;
}
if($pivate_mode AND !$user->user AND !newuserpage($_SERVER["PHP_SELF"])){
loginrequired("user", false);
include'footer.php';
}
echo"<noscript>
<center><h1><font class=warntext>Javascript is not available!</font></h1></center>
<center><h1><font class=warntext>This website cannot function correctly without JavaScript!</font></h1></center>
</noscript>\n";
//check for new pm's
$has_newpm = false;
$sql = "SELECT id FROM ".$db_prefix."_private_messages WHERE recipient = '".$user->id."' AND is_read = 'false' LIMIT 1;";
$res = $db->sql_query($sql) or btsqlerror($sql);
$unreadmail = $db->sql_numrows($res);
$has_newpm = ($unreadmail > 0) ? true : false;
$db->sql_freeresult($res);
if ($has_newpm){
echo "<script type=\"text/javascript\" language=\"JavaScript\">";
echo "sPath = window.location.pathname;";
echo "sPage = sPath.substring(sPath.lastIndexOf('/') + 1);";
echo "if (sPage != \"pm.php\"){ var answer = confirm (\""._jscriptconfirmtext."\");";
echo "if (answer) window.location=\"pm.php?op=inbox\";";
echo "}";
echo "</script>";
}
echo "<div id=\"overDiv\" style=\"position:absolute; visibility:hidden; z-index:1000;\"></div>\n";
echo "<table cellpadding=\"0\" cellspacing=\"1\" align=\"center\" border=\"0\" class=\"tableoutborder\">
<tr>
<td class=\"mainpage\" align=\"center\">
<table style=\"width:100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">
<tr><td align=\"left\" class=\"logobackground\" colspan=5 width=\"100%\" height=\"150px\">
<!-- Logo Here --></td>";
echo "<td align=\"right\" class=\"logobackground\">";
echo "<tr>";
echo "<td align=\"center\" class=\"topbuttons\" nowrap=\"nowrap\" width=\"100%\" colspan=\"6\"><a href=\"index.php\" ><img onmouseover=\"change_bg(this,'1')\" onmouseout=\"change_bg(this,'0')\" src=\"themes/vista/pics/top_home.gif\" border=\"0\" alt=\"\" title=\"Home\" id=\"home\"></a>\n";
echo "<a href=\"torrents.php\" onclick=\"do_breload();\"><img onmouseover=\"change_bg(this,'1')\" onmouseout=\"change_bg(this,'0')\" src=\"themes/vista/pics/top_browse.gif\" border=\"0\" alt=\"\" title=\"Browse\" id=\"browse\"></a>\n";
echo"<a href=\"user.php?op=profile&id=".$user->id."\"><img onmouseover=\"change_bg(this,'1')\" onmouseout=\"change_bg(this,'0')\" src=\"themes/vista/pics/top_profile.gif\" border=\"0\" alt=\"\" title=\"Profile\" id=\"profile\"></a>\n";
echo"<a href=\"pm.php\"><img onmouseover=\"change_bg(this,'1')\" onmouseout=\"change_bg(this,'0')\" src=\"themes/vista/pics/top_msg.gif\" border=\"0\" alt=\"\" title=\"Messages\" id=\"msg\"></a>\n";
echo"<a href=\"upload.php\"><img onmouseover=\"change_bg(this,'1')\" onmouseout=\"change_bg(this,'0')\" src=\"themes/vista/pics/top_upload.gif\" border=\"0\" alt=\"\" title=\"Upload\" id=\"upload\"></a>\n";
echo"<a href=\"phpBB.php\"><img onmouseover=\"change_bg(this,'1')\" onmouseout=\"change_bg(this,'0')\" src=\"themes/vista/pics/top_forum.gif\" border=\"0\" alt=\"\" title=\"Forums\" id=\"forums\"></a>\n";
help("<img onmouseover=\"change_bg(this,'1')\" onmouseout=\"change_bg(this,'0')\" src=\"themes/vista/pics/top_help.gif\" border=\"0\" alt=\"\" title=\"Staff\" id=\"help\">","<table width=\"100%\" cellspacing=\"1\" cellpadding=\"4\" border=\"0\" class=\"tableinborder\"><tr><td class=\"tabletitle\"><div align=\"center\"><a href=\"javascript:;\" onclick=\"return nd();\">Help Menu</a></div></td></tr><tr><td class=\"tableb\"><div align=\"center\"><a href=\"chat.php\">Chat</a></div></td></tr><tr><td class=\"tableb\"><div align=\"center\"><a href=\"rules.php\">Rules</a></div></td></tr><tr><td class=\"tableb\"><div align=\"center\"><a href=\"faq.php\">F.A.Q</a></div></td></tr><tr><td class=\"tableb\"><div align=\"center\"><a href=\"staff.php\">Staff</a></div></td></tr></table>",'test','test');
echo"\n<a href=\"javascript:;\" onclick=\"confirm_del('logout.php', 'Are you sure do you want to logout?', '0');\"><img onmouseover=\"change_bg(this,'1')\" onmouseout=\"change_bg(this,'0')\" src=\"themes/vista/pics/top_logout.gif\" border=\"0\" alt=\"\" title=\"Logout\" id=\"logout\"></a>\n
</table></td>
</tr></table><table border=\"0\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td>";
#start left coloum
echo"<table width=\"100%\">
<tr>
<td width=\"14%\" valign=\"top\">\n";
#end left coloum
if(!eregi("phpBB.php",$_SERVER["PHP_SELF"]))
{
OpenTable('Theme Change');
echo "<p align=\"center\"><b>Theme</b></p>\n";
echo "<form id=\"acp_styles\" type=\"hidden\" method=\"post\" action=\"#\">";
echo "<p><select id=\"template_file\" name=\"theme_change\" onchange=\"if (this.options[this.selectedIndex].value != '') this.form.submit();\">".themechange()."</select></p>";
echo "<p align=\"center\"><b>Language</b></p>\n";
echo "<p><select id=\"language_file\" name=\"language_change\" onchange=\"if (this.options[this.selectedIndex].value != '') this.form.submit();\">".languagechange()."</select></p>";
echo " <input class=\"button2\" type=\"submit\" value=\"SELECT\" /></form>";
CloseTable();
include("./blocks/usercp.php");
// invite block
if ($user->user AND $INVITEONLY)
{
OpenTable(_btinvites);
echo "<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\n";
echo "<tr><td align=\"center\">"._btinfituh."<br></td></tr>\n";
if ($user->invites > 0 ){
echo "<tr><td align=\"center\"><a href=invite.php>"._btsendiv."</a><br></td></tr>\n";
}
echo "</table>";
CloseTable();
}
if ($donations){
include("./blocks/donation_block.php");
}
if (!$onlysearch OR $user->admin) include_once("./blocks/catlist.php");
}
echo"</td>\n";
#start midle colum
echo"<td width=\"72%\" valign=\"top\">\n";
$sql_profile = "SELECT * FROM ".$db_prefix."_users where id = '".$user->id."' ;";
$res_profile = $db->sql_query($sql_profile);
$userrow = $db->sql_fetchrow($res_profile);
$db->sql_freeresult($res_profile);
// WARN things START
if ($user->user) {
if ($user->downloaded > 0){
include ("./ratiowarn.php");
}
}
if ($userrow["warned"])
{
$warn_kapta = $userrow["warn_kapta"];
$warn_hossz = $userrow["warn_hossz"];
$modcomment = $userrow["modcomment"];
if ($warn_hossz != -1) {
$warn = $warn_kapta + $warn_hossz;
$time_now = strtotime(gmdate("Y-m-d H:i:s", time()));
if ($warn < $time_now)
{
$modcomment = "[ " . gmdate("Y-m-d H:i:s", time()) . " - WARN time expired ]\n" . $modcomment;
$msg = ("Your WARN time expired, so we deleted it!");
@$db->sql_query("INSERT INTO ".$db_prefix."_private_messages (sender, recipient, subject, text, sent) VALUES(1, " .$user->id. ",'WARNING' '" . $msg ."', NOW())") or die(mysql_error());
$modcomment = $modcomment;
$frissites = $db->sql_query("UPDATE ".$db_prefix."_users SET modcomment=$modcomment, warned='0', warn_kapta='0', warn_hossz='0' WHERE id='".$user->id."'") or die(mysql_error());
}
}
}
// WARN things END
//////////////////// Kommentera modd ////////////////////////
$res = $db->sql_query("SELECT torrent FROM ".$db_prefix."_peers WHERE uid='".$user->id."'")or print(mysql_error());
while($row = $db->sql_fetchrow($res)){
$kom = $db->sql_fetchrow( $db->sql_query("SELECT count(*) FROM ".$db_prefix."_comments WHERE user= '".$user->id."' AND torrent='$row[torrent]'"))or print(mysql_error());
$tor = $db->sql_fetchrow( $db->sql_query("SELECT name,owner FROM ".$db_prefix."_torrents WHERE id='$row[torrent]'"))or print(mysql_error());
if(!$kom[0] && $tor[owner] != $user->id){
$komment .= "<a href=details.php?id=".$row[torrent].">".$tor[name]."</a>\n<br>";
}
}
/////////////////////////////////////////////////////////////
if ($user->user) {
if ($komment){
print("<table width=\"100%\" border=0 cellspacing=0 cellpadding=10 bgcolor=green><tr><td style='padding: 50px; background: green'>\n");
print("Please leave a comment on:<br>$komment");
print("</td></tr></table>\n");
}
}
}
function themefooter(){
global $startpagetime;
echo"</td>\n";
#start right colum
echo"<td width=\"14%\" valign=\"top\">\n";
if(!eregi("phpBB.php",$_SERVER["PHP_SELF"]))
{
OpenTable("HTML");
echo "<p align=\"center\"><a href=\"http://validator.w3.org/check?uri=referer\"><img src=\"http://www.w3.org/Icons/valid-html401\" alt=\"Valid HTML 4.01 Transitional\" height=\"31\" width=\"88\" border=\"0\"></a></p>\n";
CloseTable();
if (!$onlysearch) include("./blocks/syndicate.php"); #Deactivated until RSS syndication is complete
}
#end right colum
echo"</td>\n";
echo"</tr></table>\n";
echo"</td>\n";
echo"</tr></table>\n";
echo"<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\n";
echo"<tr>\n";
echo"<td>\n";
echo"<p class=\"footer\">
<!-- Feel free to add you custom disclaimer or copyright notice here -->
<!-- YOU ARE NOT ALLOWED TO EDIT THE FOLLOWING COPYRIGHT NOTICE!!! -->
phpMyBitTorrent © 2005-2006 <a href=\"http://phpmybittorrent.com\">phpMyBitTorrent Team</a>.<br>
This is free software and contains source code version of GNU/LGPL distributed libraries.<br>
You may redistribute the whole package and its source code according to the GNU/GPL license.<br>
The Development Team cannot be held responsible in any way for the results of the use of this software.<br>
<!-- END OF COPYRIGHT NOTICE -->
Generated in ". abs(round(microtime()-$startpagetime,2)) ." seconds
</p>
<!-- Start of StatCounter Code -->
<script type=\"text/javascript\">
var sc_project=2789089;
var sc_invisible=0;
var sc_partition=28;
var sc_security=\"7d0a2fe3\";
</script>
<script type=\"text/javascript\" src=\"http://www.statcounter.com/counter/counter_xhtml.js\"></script><noscript><div class=\"statcounter\"><a class=\"statcounter\" href=\"http://www.statcounter.com/\"><img class=\"statcounter\" src=\"http://c29.statcounter.com/2789089/0/7d0a2fe3/0/\" alt=\"web metrics\" ></a></div></noscript>
<!-- End of StatCounter Code -->";
echo"</body>\n";
echo"</html>\n";
}
function overlib_init() {
echo "<script type=\"text/javascript\" src=\"themes/vista/java/cont.js\"><!-- extra js --></script>\n";
echo "<script type=\"text/javascript\" src=\"overlib/overlib.js\"><!-- overLIB (c) Erik Bosrup --></script>\n";
echo "<script type=\"text/javascript\" src=\"overlib/overlib_shadow.js\"><!-- overLIB (c) Erik Bosrup --></script>\n";
}
function help($name,$help,$title = "",$link = "") {
if ($link != "") echo "<span class=\"overlib\" onclick=\"return overlib('".addslashes(str_replace(Array("\n","\""),Array("","'"),$help)),"'";
if ($link == "") echo "<span class=\"overlib\" onmouseover=\"return overlib('".addslashes(str_replace(Array("\n","\""),Array("","'"),$help)),"'";
if ($title != "" AND $link == "") echo ",CAPTION, '".addslashes(str_replace(Array("\n","\""),Array("","'"),$title))."'";
// if ($title != "" AND $link != "") echo ",CAPTION, '".addslashes(str_replace(Array("\n","\""),Array("","'"),$title))."'";
if ($link == "") echo ",TEXTFONT,'Verdana',TEXTCOLOR,'#FFFFFF',CAPTIONFONT,'Lucida Console, Verdana',CENTER,FGCOLOR,'#000000',BGCOLOR,'#6F7578',CAPICON,'themes/vista/pics/help.png',BORDER,2,SHADOW,SHADOWOPACITY,40,SHADOWCOLOR,'#030303',SHADOWX,2,SHADOWY,2);\" onmouseout=\"return nd();\" style=\"cursor:help\">".$name."</span>";
if ($link != "") echo ",CELLPAD,'0',FOLLOWMOUSE,'0',TEXTFONT,'Verdana',TEXTCOLOR,'#FFFFFF',CAPTIONFONT,'Lucida Console, Verdana',CENTER,FGCOLOR,'#000000',BGCOLOR,'#6F7578',CAPICON,'themes/vista/pics/help.png',SHADOW,SHADOWOPACITY,40,SHADOWCOLOR,'#030303',SHADOWX,2,SHADOWY,2);\" >".$name."</span>";
}
?>
|
|
| | | | |
Goto Forum:
Current Time: Wed Feb 08 11:52:50 GMT 2012
Total time taken to generate the page: 0.00782 seconds
|