+ Changed license to X11 modified by PioDer

+ Updated author webpage url
+ Positioned "You have x PMs"
+ Colored special groups (Admins, Mods)

git-svn-id: https://svn.pioder.pl/uf-svn/uF@36 72ec579a-5ced-4fa4-82f3-afba5d98df2f
This commit is contained in:
pioder
2010-01-14 19:50:52 +00:00
parent 98bd401edb
commit 194a9ffc01
60 changed files with 208 additions and 185 deletions

View File

@@ -3,9 +3,9 @@
* @package uForum
* @file admin/forum_info.php
* @version $Id$
* @copyright 2009(c) PioDer <pioder@wp.pl>
* @link http://pioder.gim2przemysl.int.pl/
* @license GNU GPL v3
* @copyright 2007-2010 (c) PioDer <pioder@wp.pl>
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/
define('IN_uF', true);
//include files
@@ -33,10 +33,10 @@ if (User::UserInformation($_SESSION['uid'],'rank')!=2)
$errno = 0;
$errstr = '';
$version = '';
if ($open = fsockopen('pioder.ath.cx', 80, $errno, $errstr, 10))
if ($open = fsockopen('www.pioder.pl', 80, $errno, $errstr, 10))
{
fputs($open, "GET /updates.php?app=uf HTTP/1.1\r\n");
fputs($open, "HOST: pioder.ath.cx\r\n");
fputs($open, "HOST: www.pioder.pl\r\n");
fputs($open, "Connection: close\r\n\r\n");
$get_info = false;
while (!feof($open))