View Single Post
  #7  
Old 12th March 2009, 04:16
Keiichi Keiichi is offline
Senior Member
 
Join Date: Feb 2008
Brazil
Posts: 25
Default FTS 1.0.3 Pre-Beta fix 0.1
access the SVN repository

FTS 1.0.3 Pre-Beta
PHP Code:
............................
FTS 1.0.3 Pre-Beta_fix_0.1

;;;;;;;;;;;;;;;;;;;;;;;;;;;;
forums/post.php

Erro
 sql_query
("INSERT INTO posts (topicid, userid, added, body, subject) " .
    
"VALUES($topicid$userid$added$body, '$subject')") or sqlerr(__FILE____LINE__);

-----------------------------
fix ok
 sql_query
("INSERT INTO posts (topicid, userid, added, body, subject) " .
    
"VALUES($topicid$userid$added$body$subject)") or sqlerr(__FILE____LINE__);
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

admin/forummanage.php

Erro
echo "<tr><td><a href=forums.php?action=viewforum&forumid=".$row["id"]."><b>".$row["name"]."</b></a><br>".$row["description"]."</td>";
------------------------------
fix ok
echo "<tr><td><a href= $BASEURL/forums/viewforum.php?action=viewforum&forumid=".$row["id"]."><b>".$row["name"]."</b></a><br>".$row["description"]."</td>";

admin/moforums.php

Erro
echo "<tr><td><a href=forums.php?action=forumview&forid=".$row["id"]."><b>".$row["name"]."</b></a><br>".$row["description"]."</td>";
-------------------------------
fix ok
echo "<tr><td><a href= $BASEURL/forums/viewforum.php?action=forumview&forid=".$row["id"]."><b>".$row["name"]."</b></a><br>".$row["description"]."</td>";
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
include/
libs/main.php
Erro
$REPORTEMAIL 
FFactory::configoption($MAIN['reportemail'],"report@$_SERVER[HTTP_HOST]");

fix ok
$reportemail 
FFactory::configoption($MAIN['reportemail'],"report@$_SERVER[HTTP_HOST]");
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
fts-contents/fts-plugins/index-elements/wgo.php

fix add 
global function
function 
_index_element_wgo() {
    global 
$BASEURL$CURUSER$sessions;
--------------------------------
fts-contents/fts-plugins/index-elements/stats.php

fix erro add 
global function $maxusers

     
global $_c$maxusers;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ADD pic/green-arrow-right.gif green-arrow.gif

ADD forums
.php users.php 
Sorry my bad English

Keiichi
Attached Files
File Type: rar FTS 1.0.3 Pre-Beta_fix_0.1.rar (4.32 MB, 112 views)
Reply With Quote