+ Censorlist was extended - added replacement parametr

+ Fixed bug with DB Size in check_script.php
+ Deleted a lot of indexes in check_script_data.php
+ Deleted cache index and forum lastpost section in cache_index.php and cache_forum.php
+ Fixed other bugs in warnings
+ Fixed pagination in search.php
+ Replaced DSF logo to uForum logo
+ Moved differend elements in skin
+ Added "WHOIS" option in "Admin/Mod Pool" in view topic
+ Fixed bug in add warnings: couldn't add warn for admin/mod

git-svn-id: https://svn.pioder.pl/uf-svn/uF@29 72ec579a-5ced-4fa4-82f3-afba5d98df2f
This commit is contained in:
pioder
2009-05-31 15:20:17 +00:00
parent b67095eb0b
commit b157d6653e
30 changed files with 228 additions and 128 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 697 B

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 985 B

After

Width:  |  Height:  |  Size: 940 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 664 B

After

Width:  |  Height:  |  Size: 942 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

View File

@@ -1,9 +1,9 @@
<span class="fsmall">&nbsp;<br></span>
<table class="maintable" width="<?= TABLES_WIDTH; ?>" style="border-width: 0px">
<tr>
<td width="14" height="7" style="background-image: url('skins/subPurple/images/td_category_left.gif')" class="category">&nbsp;</td>
<td width="18" height="25" style="background-image: url('skins/subPurple/images/td_category_left.gif')" class="category">&nbsp;</td>
<td height="7"class="category" style="background-image: url('skins/subPurple/images/td_category.jpg')"><? echo $skin['category']; ?></td>
<td width="14" height="7" style="background-image: url('skins/subPurple/images/td_category_right.gif')" class="category"></td>
<td width="18" height="7" style="background-image: url('skins/subPurple/images/td_category_right.gif')" class="category"></td>
</tr>
</table>
<table class="maintable" width="<?= TABLES_WIDTH; ?>" style="border-top: 0px">

View File

@@ -6,7 +6,7 @@
<meta name="keywords" content="<? echo $skin['keywords']; ?>">
<meta name="description" content="<? echo $skin['description']; ?>">
<link rel="stylesheet" href="skins/subPurple/skin.css" type="text/css">
<title><? echo $skin['forumname']; ?> - <? echo $skin['mainpage']; ?></title>
<title><? echo $skin['forumname']; ?> &bull; <? echo $skin['mainpage']; ?></title>
</head>
<body class="body">
<script type="text/javascript" language="JavaScript">
@@ -44,7 +44,7 @@ function unset_color(element)
<table class="maintable" width="<?= TABLES_WIDTH; ?>" style="border-width: 0px">
<tr>
<td>
<a href="index.php"><img border="0" src="skins/subPurple/images/dsf_logo.gif" alt="DSF logo"></a></td>
<a href="index.php"><img border="0" src="skins/subPurple/images/uf_logo.gif" alt="&micro;F logo"></a></td>
<td width="502" height="75" valign="top">
<p align="center"><span class="hforum"><? echo $skin['forumname']; ?></span><br><span class="fstandard"><i><?= $skin['forumdesc']; ?></i></span></p>
<p align="center">

View File

@@ -1,9 +1,31 @@
</table>
<div style="width: 100%; text-align: right">
<span class="fsmall"><?=$skin['lpage']; ?>:
<select name="page" onchange="location='<?= $_SERVER['REQUEST_URI']; ?>&amp;page='+(this.value)">
<?= $skin['option_pages']; ?>
</select>
<?= $skin['lwith']; ?> <?= $skin['lpages']; ?>
</span>
</div>
</table>
<?php if ($_GET['content'] == 'userposts' || $_GET['content'] == 'lastposts')
{
?>
<div style="width: 100%; text-align: right">
<span class="fsmall"><?=$skin['lpage']; ?>:
<select name="page" onchange="location='<?= $_SERVER['REQUEST_URI']; ?>&amp;page='+(this.value)">
<?= $skin['option_pages']; ?>
</select>
<?= $skin['lwith']; ?> <?= $skin['lpages']; ?>
</span>
</div>
<?php
}
else
{
?>
<form action="<?= $_SERVER['REQUEST_URI']; ?>" method="post">
<input type="hidden" name="keywords" value="<?= $skin['keywords']; ?>">
<div style="width: 100%; text-align: right">
<span class="fsmall"><?=$skin['lpage']; ?>:
<select name="page" onchange="this.form.submit()">
<?= $skin['option_pages']; ?>
</select>
<?= $skin['lwith']; ?> <?= $skin['lpages']; ?>
</span>
</div>
</form>
<?php
}
?>

View File

@@ -4,7 +4,7 @@
<td width="17" style="background-image: url('skins/subPurple/images/td_beam_left.gif')"></td>
<td width="100" id="p<? echo $skin['tp_id']; ?>" height="14" class="beam" align="center" style="background-image: url('skins/subPurple/images/td_beam_top.gif')"></td>
<td width="<?= (TABLES_WIDTH -244); ?>" height="14" class="beam" align="center" style="background-image: url('skins/subPurple/images/td_beam_top.gif')"><?= $skin['lpost']?></td>
<td width="110" height="15" class="beam" align="center" style="background-image: url('skins/subPurple/images/td_beam_top.gif')"><? echo $skin['lpinfo']; ?></td>
<td width="110" height="15" class="beam" align="center" style="background-image: url('skins/subPurple/images/td_beam_top.gif')"><? echo $skin['L.p_info']; ?></td>
<td width="17" style="background-image: url('skins/subPurple/images/td_beam_right.gif')"></td>
</tr>
<table class="maintable" width="<?= TABLES_WIDTH; ?>" style="border-top: 0px">
@@ -17,11 +17,10 @@
<p align="left"><span class="fstandard"><? echo $skin['posttext']; ?></span><p class="fsmall" align="left"><? echo $skin['sig']; ?></p></p>
</td>
<td width="148" height="22" class="fitem" align="center" valign="top">
<span class="fsmall">Post <? echo $skin['lno']; ?> </span>
<span class="fsmall">Post <? echo $skin['L.no']; ?> </span>
<a href="#p<? echo $skin['tp_id']; ?>" class="fsmall"><b>#<? echo $skin['tp_id']; ?></b></a><br>
<span class="fsmall"><? echo $skin['ldate']; ?>: <b><? echo $skin['pdate']; ?></b></span><br>
<span class="fsmall"><?= $skin['warns_pool']; ?></span><br>
<span class="fsmall"><b><?= $skin['lstat']; ?>: </b></span><img src="images/<?= $skin['online']?>" alt="online">
<span class="fsmall"><? echo $skin['L.date']; ?>: <b><? echo $skin['pdate']; ?></b></span><br>
<span class="fsmall"><?= $skin['warns_pool']; ?></span>
</td>
</tr>
<tr>
@@ -42,7 +41,7 @@
<span class="fsmall"><b><?= $skin['admin'];?></b><br></span>
<span class="fsmall"><?= $skin['L.IP']; ?></span>
<? echo $skin['mode_p_del']; ?>
<a href="http://localhost/DSF/warns.php?mode=add&id=<?= $skin['u_id']; ?>" class="fsmall" style="color: green"><?= $skin['add_warn']; ?></a><br>
<a href="warns.php?mode=add&id=<?= $skin['u_id']; ?>" class="fsmall" style="color: green"><?= $skin['add_warn']; ?></a><br>
<? if (RANK==2) { ?>
<a href="admin/admin_users.php?mode=edit&amp;id=<?= $skin['u_id']; ?>" class="fsmall" style="color: red"><?= $skin['edit_profile']; ?></a><br>
<a href="admin/banlist.php?mode=add&amp;submode=all&amp;ip=<?= $skin['IP']; ?>&amp;uid=<?= $skin['u_id']; ?>" class="fsmall" style="color: red"><?= $skin['ban']; ?></a><br>
@@ -52,11 +51,11 @@
</tr>
<? } }?>
<tr>
<td width="116" height="1" class="fitem" align="center"><span class="fsmall"><? echo $skin['userrank']; ?></td>
<td width="116" height="1" class="fitem" align="center"><span class="fsmall"><?= $skin['lstat']; ?>: </span><img src="images/<?= $skin['online']?>" alt="online"></span></td>
<td width="105" height="1" class="fitem" align="center"><span class="fsmall"><? echo $skin['lposts']; ?>: <b><? echo $skin['posts']; ?></b></span></td>
<td width="153" height="1" class="fitem" align="center"><span class="fsmall"><? echo $skin['lregdate']; ?>: <b><? echo $skin['regdate']; ?></b></span></td>
<td width="228" height="1" class="fitem" align="center"><span class="fsmall"><? echo $skin['llastvisit']; ?>: <b><? echo $skin['lastvisit']; ?></b></span></td>
<td width="142" height="1" class="fitem" align="center"><span class="fsmall">&nbsp;</span></td>
<td width="142" height="1" class="fitem" align="center"><span class="fsmall"><? echo $skin['userrank']; ?></span></td>
</tr>
</table>
<span class="fverysmall">&nbsp;<br></span>