1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 14:17:49 +02:00

Fix a couple of typos - thanks Luceos

This commit is contained in:
e107steved
2009-05-09 19:54:18 +00:00
parent c5b338c6fc
commit 526758cb7d
2 changed files with 5 additions and 5 deletions

View File

@@ -9,9 +9,9 @@
* Forum admin functions * Forum admin functions
* *
* $Source: /cvs_backup/e107_0.8/e107_plugins/forum/forum_admin_class.php,v $ * $Source: /cvs_backup/e107_0.8/e107_plugins/forum/forum_admin_class.php,v $
* $Revision: 1.12 $ * $Revision: 1.13 $
* $Date: 2008-12-18 18:32:54 $ * $Date: 2009-05-09 19:54:18 $
* $Author: mcfly_e107 $ * $Author: e107steved $
* *
*/ */
class forumAdmin class forumAdmin
@@ -502,7 +502,7 @@ class forumAdmin
$e107->sql->db_Select('forum', '*', 'forum_parent=0'); $e107->sql->db_Select('forum', '*', 'forum_parent=0');
$text .= "<select name='forum_parent' class='tbox'>\n"; $text .= "<select name='forum_parent' class='tbox'>\n";
while (list($fid, $fname) = $e107->sql->db_Fetch()) while (list($fid, $fname) = $e107->sql->db_Fetch(MYSQL_NUM))
{ {
$sel = ($fid == $fInfor['forum_parent'] ? "selected='selected'" : ''); $sel = ($fid == $fInfor['forum_parent'] ? "selected='selected'" : '');
$text .= "<option value='{$fid}' {$sel}>{$fname}</option>\n"; $text .= "<option value='{$fid}' {$sel}>{$fname}</option>\n";

View File

@@ -41,7 +41,7 @@ class forum_post_shortcodes
return $this->e107->tp->parseTemplate($THREADTOPIC_REPLY, true); return $this->e107->tp->parseTemplate($THREADTOPIC_REPLY, true);
} }
function get_forumstart() function get_formstart()
{ {
return "<form enctype='multipart/form-data' method='post' action='".e_SELF.'?'.e_QUERY."' id='dataform'>"; return "<form enctype='multipart/form-data' method='post' action='".e_SELF.'?'.e_QUERY."' id='dataform'>";
} }