Aisku dabar tokie laikai, kai turinio valdymo sistemas valdome one-click principu. Ne kaip seniau kode ieskodavom klaidu, norint moda pasileist.. :D paciam reikdavo susidiegt viska i ftp..
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fusion.co.uk/
+--------------------------------------------------------+
| Filename: sf_shoutbox_panel.php
| Author: Nick Jones (Digitanium)
| Modified: Starefossen
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined(\"IN_FUSION\")) { die(\"Access Denied\"); }
} elseif (iMEMBER && (isset($_GET['s_action']) && (($_GET['s_action'] == \"n_vote\") || ($_GET['s_action'] == \"y_vote\")))
&& (isset($_GET['shout_id']) && isnum($_GET['shout_id']))) {
$result = dbquery(
\"SELECT SUM(COALESCE(sv.vote_value,0)) as vote_count, ts.*, COALESCE(sa.shout_amnesty,0) as amnesty, tu.user_level
FROM \".DB_SHOUTBOX.\" ts
LEFT JOIN \".DB_USERS.\" tu ON ts.shout_name=tu.user_id
LEFT JOIN \".DB_SF_SHOUT_VOTE.\" sv ON ts.shout_id=sv.shout_id
LEFT JOIN \".DB_SF_SHOUT_AMNESTY.\" sa ON ts.shout_id=sa.shout_id
WHERE ts.shout_id = \".$_GET['shout_id'].\"
GROUP BY ts.shout_id
HAVING amnesty = 1 OR vote_count > \".SF_VOTE_LIMIT.\"
ORDER BY ts.shout_datestamp DESC
LIMIT 1\"
$esresult = dbquery(
\"SELECT ts.*, tu.user_id, tu.user_name FROM \".DB_SHOUTBOX.\" ts
LEFT JOIN \".DB_USERS.\" tu ON ts.shout_name=tu.user_id
WHERE ts.shout_id='\".$_GET['shout_id'].\"'\"
\"SELECT SUM(COALESCE(sv.vote_value,0)) as vote_count, ts.*, COALESCE(sa.shout_amnesty,0) as amnesty, tu.user_id, tu.user_name, tu.user_level
FROM \".DB_SHOUTBOX.\" ts
LEFT JOIN \".DB_USERS.\" tu ON ts.shout_name=tu.user_id
LEFT JOIN \".DB_SF_SHOUT_VOTE.\" sv ON ts.shout_id=sv.shout_id
LEFT JOIN \".DB_SF_SHOUT_AMNESTY.\" sa ON ts.shout_id=sa.shout_id
GROUP BY ts.shout_id
HAVING amnesty = 1 OR vote_count > \".SF_VOTE_LIMIT.\"
ORDER BY ts.shout_datestamp DESC
LIMIT 0,\".$settings['numofshouts']
O kodel turetu rodyt jeigu tu nenurodai jog jam atrinkti is kazkur avataru bandyk sita:
Code
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fu...
+--------------------------------------------------------+
| Filename: sf_shoutbox_panel.php
| Author: Nick Jones (Digitanium)
| Modified: Starefossen
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licen... Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined(\"IN_FUSION\")) { die(\"Access Denied\"); }
} elseif (iMEMBER && (isset($_GET['s_action']) && (($_GET['s_action'] == \"n_vote\") || ($_GET['s_action'] == \"y_vote\")))
&& (isset($_GET['shout_id']) && isnum($_GET['shout_id']))) {
$result = dbquery(
\"SELECT SUM(COALESCE(sv.vote_value,0)) as vote_count, ts.*, COALESCE(sa.shout_amnesty,0) as amnesty, tu.user_level
FROM \".DB_SHOUTBOX.\" ts
LEFT JOIN \".DB_USERS.\" tu ON ts.shout_name=tu.user_id
LEFT JOIN \".DB_SF_SHOUT_VOTE.\" sv ON ts.shout_id=sv.shout_id
LEFT JOIN \".DB_SF_SHOUT_AMNESTY.\" sa ON ts.shout_id=sa.shout_id
WHERE ts.shout_id = \".$_GET['shout_id'].\"
GROUP BY ts.shout_id
HAVING amnesty = 1 OR vote_count > \".SF_VOTE_LIMIT.\"
ORDER BY ts.shout_datestamp DESC
LIMIT 1\"
$esresult = dbquery(
\"SELECT ts.*, tu.user_id, tu.user_avatar, tu.user_name FROM \".DB_SHOUTBOX.\" ts
LEFT JOIN \".DB_USERS.\" tu ON ts.shout_name=tu.user_id
WHERE ts.shout_id='\".$_GET['shout_id'].\"'\"
\"SELECT SUM(COALESCE(sv.vote_value,0)) as vote_count, ts.*, COALESCE(sa.shout_amnesty,0) as amnesty, tu.user_id, tu.user_avatar, tu.user_name, tu.user_level
FROM \".DB_SHOUTBOX.\" ts
LEFT JOIN \".DB_USERS.\" tu ON ts.shout_name=tu.user_id
LEFT JOIN \".DB_SF_SHOUT_VOTE.\" sv ON ts.shout_id=sv.shout_id
LEFT JOIN \".DB_SF_SHOUT_AMNESTY.\" sa ON ts.shout_id=sa.shout_id
GROUP BY ts.shout_id
HAVING amnesty = 1 OR vote_count > \".SF_VOTE_LIMIT.\"
ORDER BY ts.shout_datestamp DESC
LIMIT 0,\".$settings['numofshouts']