Fix URL + format code.

1.10.x
Julio 10 years ago
parent 775ef96c85
commit 11fda5a9bf
  1. 23
      main/forum/forumfunction.inc.php

@ -2577,7 +2577,7 @@ function show_add_post_form($current_forum, $forum_setting, $action = '', $id =
$form = new FormValidator( $form = new FormValidator(
'thread', 'thread',
'post', 'post',
api_get_self().'?forum='.Security::remove_XSS($my_forum).'&'.api_get_cidreq().'&thread='.Security::remove_XSS($myThread).'&post='.Security::remove_XSS($my_post).'&action='.$action api_get_self().'?forum='.intval($my_forum).'&gradebook='.$my_gradebook.'&thread='.intval($myThread).'&post='.intval($my_post).'&action='.$action.'&'.api_get_cidreq()
); );
$form->setConstants(array('forum' => '5')); $form->setConstants(array('forum' => '5'));
@ -2873,7 +2873,6 @@ function saveThreadScore(
"; ";
Database::query($sql); Database::query($sql);
return 'update'; return 'update';
} }
@ -3072,7 +3071,9 @@ function store_reply($current_forum, $values)
$table_posts = Database :: get_course_table(TABLE_FORUM_POST); $table_posts = Database :: get_course_table(TABLE_FORUM_POST);
$post_date = api_get_utc_datetime(); $post_date = api_get_utc_datetime();
if ($current_forum['approval_direct_post'] == '1' && !api_is_allowed_to_edit(null, true)) { if ($current_forum['approval_direct_post'] == '1' &&
!api_is_allowed_to_edit(null, true)
) {
$visible = 0; $visible = 0;
} else { } else {
$visible = 1; $visible = 1;
@ -3130,10 +3131,8 @@ function store_reply($current_forum, $values)
api_get_user_id() api_get_user_id()
); );
if ($current_forum['approval_direct_post'] == '1' && !api_is_allowed_to_edit( if ($current_forum['approval_direct_post'] == '1' &&
null, !api_is_allowed_to_edit(null, true)
true
)
) { ) {
$message .= '<br />'.get_lang( $message .= '<br />'.get_lang(
'MessageHasToBeApproved' 'MessageHasToBeApproved'
@ -3178,8 +3177,14 @@ function store_reply($current_forum, $values)
* @author Patrick Cool <patrick.cool@UGent.be>, Ghent University * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @version february 2006, dokeos 1.8 * @version february 2006, dokeos 1.8
*/ */
function show_edit_post_form($forum_setting, $current_post, $current_thread, $current_forum, $form_values = '', $id_attach = 0) function show_edit_post_form(
{ $forum_setting,
$current_post,
$current_thread,
$current_forum,
$form_values = '',
$id_attach = 0
) {
// Initialize the object. // Initialize the object.
$form = new FormValidator( $form = new FormValidator(
'edit_post', 'edit_post',

Loading…
Cancel
Save