Browse Source

+ 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
master
pioder 14 years ago
parent
commit
194a9ffc01
60 changed files with 208 additions and 185 deletions
  1. +22
    -0
      LICENSE.txt
  2. +3
    -3
      admin/admin_forums.php
  3. +3
    -3
      admin/admin_groups.php
  4. +3
    -3
      admin/admin_script.php
  5. +3
    -3
      admin/admin_users.php
  6. +4
    -4
      admin/banlist.php
  7. +3
    -3
      admin/censorlist.php
  8. +3
    -3
      admin/check_script.php
  9. +3
    -3
      admin/check_script_data.php
  10. +5
    -5
      admin/forum_info.php
  11. +3
    -3
      admin/header.php
  12. +3
    -3
      admin/index.php
  13. +3
    -3
      admin/mass_email.php
  14. +3
    -3
      admin/smilelist.php
  15. +3
    -3
      common.php
  16. +3
    -3
      eprofile.php
  17. +3
    -3
      forum.php
  18. +5
    -4
      groups.php
  19. +3
    -3
      includes/admin/class_forum.php
  20. +3
    -3
      includes/admin/class_main.php
  21. +3
    -3
      includes/cache/cache_forums.php
  22. +3
    -3
      includes/cache/cache_index.php
  23. +3
    -3
      includes/cache/cache_topic.php
  24. +3
    -3
      includes/classes/class_forum.php
  25. +3
    -3
      includes/classes/class_mod.php
  26. +3
    -3
      includes/classes/class_pms.php
  27. +3
    -3
      includes/classes/class_posting.php
  28. +3
    -3
      includes/classes/class_topic.php
  29. +4
    -4
      includes/classes/class_user.php
  30. +3
    -3
      includes/classes/secure.php
  31. +4
    -4
      includes/constants.php
  32. +3
    -3
      includes/db.php
  33. +3
    -3
      includes/emailer.php
  34. +4
    -4
      includes/errors.php
  35. +3
    -3
      includes/misc_functions.php
  36. +3
    -3
      includes/sessions.php
  37. +3
    -3
      includes/sql_parse.php
  38. +4
    -4
      index.php
  39. +3
    -3
      install1/config.php
  40. +3
    -3
      install1/functions_add.php
  41. +3
    -3
      install1/index.php
  42. +3
    -3
      lngs/Polish/admin.php
  43. +3
    -3
      lngs/Polish/email.php
  44. +4
    -4
      lngs/Polish/install.php
  45. +4
    -4
      lngs/Polish/main.php
  46. +3
    -3
      lngs/Polish/quick_reply.php
  47. +3
    -3
      lngs/Polish/wysiwyg.php
  48. +3
    -3
      login.php
  49. +3
    -3
      moderate.php
  50. +3
    -3
      pms.php
  51. +3
    -3
      posting.php
  52. +3
    -3
      quick_reply.php
  53. +3
    -3
      register.php
  54. +3
    -3
      search.php
  55. +3
    -3
      shoutbox.php
  56. +1
    -1
      skins/subPurple/index_body.tpl
  57. +3
    -3
      topic.php
  58. +3
    -3
      user.php
  59. +3
    -3
      users.php
  60. +3
    -3
      warns.php

+ 22
- 0
LICENSE.txt View File

@ -0,0 +1,22 @@
Copyright (c) 2007-2010 PioDer <[email protected]>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense,
and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

+ 3
- 3
admin/admin_forums.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/admin_forums.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

+ 3
- 3
admin/admin_groups.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/admin_groups.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

+ 3
- 3
admin/admin_script.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/admin_scripts.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

+ 3
- 3
admin/admin_users.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/admin_users.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

+ 4
- 4
admin/banlist.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/banlist.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
@ -374,4 +374,4 @@ switch($_GET['mode'])
break;
}
}
?>
?>

+ 3
- 3
admin/censorlist.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/censorlist.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

+ 3
- 3
admin/check_script.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/check_script.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

+ 3
- 3
admin/check_script_data.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/check_script_data.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
**/
if ( !defined('IN_uF') )
{

+ 5
- 5
admin/forum_info.php 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))

+ 3
- 3
admin/header.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/header.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('./../config.php');

+ 3
- 3
admin/index.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/index.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

+ 3
- 3
admin/mass_email.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/mass_email.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

+ 3
- 3
admin/smilelist.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file admin/smilelist.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

+ 3
- 3
common.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file common.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
**/
if (is_dir('install'))

+ 3
- 3
eprofile.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file eprofile.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

+ 3
- 3
forum.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file forum.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

+ 5
- 4
groups.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file groups.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
@ -154,9 +154,10 @@ else
$i = 0;
while($i<2)
{
$color = ($i==0) ? $forum_config['color_admin'] : $forum_config['color_mod'];
$skin = array (
'g_id'=>$special_groups[$i][0],
'name' => $special_groups[$i][1],
'name' => '<span style="color: '.$color.'">'.$special_groups[$i][1].'</span>',
'desc' =>$special_groups[$i][2]
);
include('./skins/'.$default_skin.'/group_add_body.tpl');

+ 3
- 3
includes/admin/class_forum.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/admin/class_forum.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
**/
if ( !defined('IN_uF') )
{

+ 3
- 3
includes/admin/class_main.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/admin/class_main.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
**/
if ( !defined('IN_uF') )
{

+ 3
- 3
includes/cache/cache_forums.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/cache/cache_forums.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
**/
if(!defined('IN_uF'))
{

+ 3
- 3
includes/cache/cache_index.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/cache/cache_index.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
**/
if(!defined('IN_uF'))
{

+ 3
- 3
includes/cache/cache_topic.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/cache/cache_topic.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
**/
if(!defined('IN_uF'))
{

+ 3
- 3
includes/classes/class_forum.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/classes/class_forum.php
* @version $Id: classes/class_forum.php 15 2009-05-01 17:06:40Z pioder $
* @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
**/
if ( !defined('IN_uF') )
{

+ 3
- 3
includes/classes/class_mod.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/classes/class_mod.php
* @version $Id: classes/class_mod.php 15 2009-05-01 17:06:40Z pioder $
* @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
**/
if ( !defined('IN_uF') )
{

+ 3
- 3
includes/classes/class_pms.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/classes/class_pms.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
**/
if ( !defined('IN_uF') )
{

+ 3
- 3
includes/classes/class_posting.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/classes/class_posting.php
* @version $Id: classes/class_posting.php 15 2009-05-01 17:06:40Z pioder $
* @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
**/
if ( !defined('IN_uF') )
{

+ 3
- 3
includes/classes/class_topic.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/classes/class_topic.php
* @version $Id: classes/class_topic.php 15 2009-05-01 17:06:40Z pioder $
* @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
**/
if ( !defined('IN_uF') )
{

+ 4
- 4
includes/classes/class_user.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/classes/class_user.php
* @version $Id: classes/class_user.php 15 2009-05-01 17:06:40Z pioder $
* @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
**/
if ( !defined('IN_uF') )
{
@ -188,7 +188,7 @@ class User
DataBase::sql_query($sql,CRITICAL,'Could not create new user');
}
function UserMsgs()
function UserPMs()
{
$uid = $_SESSION['uid'];
if($uid>0)

+ 3
- 3
includes/classes/secure.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/classes/secure.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
**/
if ( !defined('IN_uF') )
{

+ 4
- 4
includes/constants.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file constans.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
**/
if (!defined('IN_uF'))
{
@ -39,7 +39,7 @@ define('TOPICS_TABLE',DB_PREFIX.'topics');
define('WARNINGS_TABLE',DB_PREFIX.'warns');
//footer forum text
define('FOOTER_TEXT','<span class="copyright" >Powered by <b>&micro;Forum</b></span><span class="copyright"> &copy; 2007-2009 </span><a href="http://pioder.ath.cx/" class="copyright" target="_blank"><b>PioDer</b></a>');
define('FOOTER_TEXT','<span class="copyright" >Powered by <b>&micro;Forum</b></span><span class="copyright"> &copy; 2007-2010 </span><a href="http://www.pioder.pl/" class="copyright" target="_blank"><b>PioDer</b></a>');
//hash for password
define('PASSWD_HASH','bJVhVFCthvhVhKBU6GUbhUBU6VI7BiU6fV7G76Kbug6FU67VsaVYat5FJUHssaYVY5fV5GUHI76uKYTjYKKTatastYKYTYKg6ds7IRdsagI565JTrJ4NFGagGKLULygaTJHgfYDRZagGHJ65KL7iryikuuyriMYIYYUyugFTDeRnLKJNuyTDTRsERy78IJOhHCTDYjomLKBJDF5THNNBjyFCDYekjnKBUYgIHnUIbyuG6UyHNKJjnKHVut6FBYlH987g6GIUBbg76V5NNLUBH76BKLBi76FVtjN76Gi77ggYVCx3 R4SGhfGLHIH64XFGBUNLJOgfvc4Y3ScvmljmOBVc4klJKNIuBGVY6 MbvhGCRGgJLjKFHrYYJnKJGFHTfJJjnLK');

+ 3
- 3
includes/db.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/db.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
**/
if ( !defined('IN_uF') )
{

+ 3
- 3
includes/emailer.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/class_email.php
* @version $Id: emailer.php -1 $
* @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
**/
if ( !defined('IN_uF') )
{

+ 4
- 4
includes/errors.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/errors.php
* @version $Id: errors.php 15 2009-05-01 17:06:40Z pioder $
* @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
**/
if ( !defined('IN_uF') )
{
@ -38,7 +38,7 @@ function message_die($type, $msm, $sql)
$msg = $msg.'<font face="Verdana" style="font-size: 11pt"><i>'.$sql.'</i></font>';
}
$msg = $msg.'</td></tr><tr><td bgcolor="white"><center><font face="Verdana" style="font-size: 10pt">Problems? Questions? Visit:
<a href="http://pioder.gim2przemysl.int.pl/forum/" target="_blank">http://pioder.gim2przemysl.int.pl/forum</a></font></td></tr></table></center></body>';
<a href="http://www.pioder.pl/forum/" target="_blank">http://www.pioder.pl/forum</a></font></td></tr></table></center></body>';
die($msg);
}

+ 3
- 3
includes/misc_functions.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/class_overall.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
**/
if ( !defined('IN_uF') )
{

+ 3
- 3
includes/sessions.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/sessions.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
**/
if ( !defined('IN_uF') )
{

+ 3
- 3
includes/sql_parse.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file includes/sql_parse.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
* @note Originally, phpMyAdmin function
**/
function remove_comments(&$output)

+ 4
- 4
index.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file index.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
@ -43,7 +43,7 @@ $skin = array(
'loged_as' => User::LogedAs($_SESSION['sessionid'], $_SESSION['uid']),
'lyoure' => ($_SESSION['uid']>0) ? $lng['you_re'] : '',
'lpm_msgs' => ($_SESSION['uid']>0) ? $lng['pm_messages'] : '',
'amsgs' => ($_SESSION['uid']>0) ? User::UserMsgs() : ''
'amsgs' => ($_SESSION['uid']>0) ? User::UserPMs() : ''
);
$skin = array_push_assoc($skin, GenerateHeader($lng['mainpage'], '</a>&gt; <a href="index.php" class="navigator">'.$lng['mainpage']));
//do it!

+ 3
- 3
install1/config.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file config.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
**/
if ( !defined('IN_uF') )
{

+ 3
- 3
install1/functions_add.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file install/functions_add.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
**/
if (!defined('IN_uF'))
{

+ 3
- 3
install1/index.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file install/index.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('./../config.php');

+ 3
- 3
lngs/Polish/admin.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file lngs/Polish/admin.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
**/
include('./../lngs/Polish/wysiwyg.php');
//

+ 3
- 3
lngs/Polish/email.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file lngs/Polish/email.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
**/
//register message :]
$lng['email_welcome']='Witamy na forum';

+ 4
- 4
lngs/Polish/install.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file lngs/Polish/install.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
**/
$lng['install_header']='Instalator skryptu &micro;Forum';
$lng['licence']='Licencja';
@ -47,7 +47,7 @@ $lng['invalid_email']='Podałeś nieprawidłowy email!';
$lng['info_1']='Zaraz zostaniesz przeniesiony do krótkiej konfiguracji skryptu';
$lng['info_2']='Dziękujemy za wybranie &micro;Forum do obsługi Twojego forum!
Dołożymy wszelkich starań, <br> aby skrypt był bezpieczny. Wszelkie aktualizacje
znajdziesz na stronie internetowej:<br><a href="http://pioder.gim2przemysl.int.pl/"
znajdziesz na stronie internetowej:<br><a href="http://www.pioder.pl/"
class="fstandard"><b>PioDer Website</b></a><br><b>Miłego dnia!</b>';
$lng['name_forum']='Nazwa Twojego Forum';
$lng['no_lang']='Nie podałeś domyślnego języka!';

+ 4
- 4
lngs/Polish/main.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file lngs/Polish/main.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
**/
include('./lngs/Polish/wysiwyg.php');
//on header....------------------------------------------------------
@ -162,7 +162,7 @@ $lng['pm_inbox_full']='Wiadomość nie zostanie dostarczona do adresata, gdyż j
//on private messages.....--------------------------------------------
//
$lng['write_pm'] = 'Napisz Prywatną wiadomość';
$lng['pm_messages']='Prywatnych Wiadomości';
$lng['pm_messages']='nowych PW';
$lng['inbox']='Skrzynka odbiorcza';
$lng['sentbox']='Elementy wysłane';
$lng['content_message']='Treśc Wiadomości';

+ 3
- 3
lngs/Polish/quick_reply.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file lngs/Polish/quick_reply.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
**/
$lng['title']='Szybka Odpowiedź';
$lng['message']='Wiadomość';

+ 3
- 3
lngs/Polish/wysiwyg.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file lngs/Polish/wysiwyg.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
**/
$lng['function_disabled_html_mode']='Funkcja niedostępna w trybie HTML';
$lng['lang_titles_1']='

+ 3
- 3
login.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file login.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

+ 3
- 3
moderate.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file moderate.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

+ 3
- 3
pms.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file pms.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

+ 3
- 3
posting.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file posting.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

+ 3
- 3
quick_reply.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file quick_reply.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
**/
if ( !defined('IN_uF') )
{

+ 3
- 3
register.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file register.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

+ 3
- 3
search.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file search.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

+ 3
- 3
shoutbox.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file shoutbox.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
**/
if (!defined('IN_uF'))

+ 1
- 1
skins/subPurple/index_body.tpl View File

@ -1,6 +1,6 @@
<table class="maintable" width="<?= TABLES_WIDTH; ?>" style="border-width: 0px">
<tr>
<td><span class="fstandard"><? echo $skin['loged_as']; ?>. <? echo $skin['lactual_time']; ?>: <b><? echo $skin['actual_time']; ?></b></span></td>
<td width="<?= (TABLES_WIDTH-130); ?>"><span class="fstandard"><? echo $skin['loged_as']; ?>. <? echo $skin['lactual_time']; ?>: <b><? echo $skin['actual_time']; ?></b></span></td>
<td><span class="fstandard"><? echo $skin['lyoure']; ?></span> <span class="fstandard"><b><? echo $skin['amsgs']; ?></b></span> <a href="pms.php?mode=folder&submode=inbox" class="fstandard"><? echo $skin['lpm_msgs']; ?></a></td>
</tr>
</table>

+ 3
- 3
topic.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file topic.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

+ 3
- 3
user.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file user.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

+ 3
- 3
users.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file users.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

+ 3
- 3
warns.php View File

@ -3,9 +3,9 @@
* @package uForum
* @file warns.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

Loading…
Cancel
Save