@@ 2392-2396 (lines=5) @@ | ||
2389 | ||
2390 | $post_date = api_get_utc_datetime(); |
|
2391 | ||
2392 | if ($current_forum['approval_direct_post'] == '1' && !api_is_allowed_to_edit(null, true)) { |
|
2393 | $visible = 0; // The post has not been approved yet. |
|
2394 | } else { |
|
2395 | $visible = 1; |
|
2396 | } |
|
2397 | ||
2398 | $clean_post_title = $values['post_title']; |
|
2399 | ||
@@ 3252-3258 (lines=7) @@ | ||
3249 | $table_posts = Database :: get_course_table(TABLE_FORUM_POST); |
|
3250 | $post_date = api_get_utc_datetime(); |
|
3251 | ||
3252 | if ($current_forum['approval_direct_post'] == '1' && |
|
3253 | !api_is_allowed_to_edit(null, true) |
|
3254 | ) { |
|
3255 | $visible = 0; |
|
3256 | } else { |
|
3257 | $visible = 1; |
|
3258 | } |
|
3259 | ||
3260 | $upload_ok = 1; |
|
3261 |