blob: bf0e7c0223b2a192b19f7a7390082b0b9c963273 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- posting.php.orig 2010-07-29 05:13:36.201225640 -0700
+++ posting.php 2010-07-04 09:42:47.430365327 -0700
@@ -1107,6 +1107,10 @@
// The last parameter tells submit_post if search indexer has to be run
$redirect_url = submit_post($mode, $post_data['post_subject'], $post_data['username'], $post_data['topic_type'], $poll, $data, $update_message, ($update_message || $update_subject) ? true : false);
+ /* start list bridge */
+ require_once('/var/www/bridge/src/forum_post_send.php');
+ /* end list bridge */
+
if ($config['enable_post_confirm'] && !$user->data['is_registered'] && (isset($captcha) && $captcha->is_solved() === true) && ($mode == 'post' || $mode == 'reply' || $mode == 'quote'))
{
$captcha->reset();
|