You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(95) |
Apr
(270) |
May
(111) |
Jun
|
Jul
|
Aug
(64) |
Sep
(130) |
Oct
(319) |
Nov
(17) |
Dec
(191) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(53) |
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(387) |
Jul
(102) |
Aug
(247) |
Sep
(120) |
Oct
(1) |
Nov
(8) |
Dec
(21) |
| 2007 |
Jan
(38) |
Feb
(36) |
Mar
|
Apr
(32) |
May
(135) |
Jun
(523) |
Jul
(192) |
Aug
(103) |
Sep
(533) |
Oct
(77) |
Nov
(23) |
Dec
(203) |
| 2008 |
Jan
(312) |
Feb
(1193) |
Mar
(404) |
Apr
(67) |
May
(62) |
Jun
(497) |
Jul
(297) |
Aug
(110) |
Sep
(335) |
Oct
(256) |
Nov
(50) |
Dec
(118) |
| 2009 |
Jan
(67) |
Feb
(10) |
Mar
(1) |
Apr
(1) |
May
|
Jun
(10) |
Jul
(61) |
Aug
|
Sep
(16) |
Oct
(45) |
Nov
(12) |
Dec
(14) |
| 2010 |
Jan
(30) |
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
(7) |
Aug
(7) |
Sep
(5) |
Oct
(5) |
Nov
|
Dec
|
| 2011 |
Jan
(7) |
Feb
(3) |
Mar
(89) |
Apr
(11) |
May
(5) |
Jun
|
Jul
(8) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(89) |
| 2012 |
Jan
(7) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(3) |
Oct
(42) |
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(19) |
Apr
(90) |
May
(38) |
Jun
(235) |
Jul
(38) |
Aug
(10) |
Sep
|
Oct
(29) |
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(52) |
Jun
|
Jul
(7) |
Aug
|
Sep
(17) |
Oct
|
Nov
|
Dec
|
|
From: FlorinCB <ory...@us...> - 2008-12-08 23:59:42
|
Update of /cvsroot/mxbb/mx_pafiledb/pafiledb/modules In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17900/pafiledb/modules Modified Files: pa_post_comment.php Log Message: some comments Index: pa_post_comment.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/pafiledb/modules/pa_post_comment.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** pa_post_comment.php 21 Sep 2008 14:25:34 -0000 1.29 --- pa_post_comment.php 8 Dec 2008 23:58:04 -0000 1.30 *************** *** 106,111 **** // Note: cid = post_id // ! $sql = "SELECT u.username, u.user_id, u.user_posts, u.user_from, u.user_website, u.user_email, u.user_icq, u.user_aim, u.user_yim, u.user_regdate, u.user_msnm, u.user_viewemail, u.user_rank, u.user_sig, u.user_sig_bbcode_uid, u.user_avatar, u.user_avatar_type, u.user_allowavatar, u.user_allowsmile, p.*, pt.post_text, pt.post_subject, pt.bbcode_uid ! FROM " . POSTS_TABLE . " p, " . USERS_TABLE . " u, " . POSTS_TEXT_TABLE . " pt WHERE pt.post_id = p.post_id AND u.user_id = p.poster_id --- 106,111 ---- // Note: cid = post_id // ! $sql = "SELECT u.*, p.*, pt.post_text, pt.post_subject, pt.bbcode_uid ! FROM " . POSTS_TABLE . " p, " . USERS_TABLE . " u, " . ((PORTAL_BACKEND == 'phpbb2') ? POSTS_TEXT_TABLE : POSTS_TABLE) . " pt WHERE pt.post_id = p.post_id AND u.user_id = p.poster_id *************** *** 128,131 **** --- 128,132 ---- $comment_body = $preview || isset($_POST['message']) ? $_POST['message'] : $comment_row[$comment_arg_message]; $bbcode_uid = $preview ? '' : $comment_row[$comment_arg_bbcode_uid]; + $bbcode_bitfield = $comment_row['bbcode_bitfield'] ? $comment_row['bbcode_bitfield'] : true; // |
|
From: FlorinCB <ory...@us...> - 2008-12-08 23:58:33
|
Update of /cvsroot/mxbb/mx_pafiledb In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17900 Modified Files: dload.php dload_quickdl.php Log Message: some comments Index: dload.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/dload.php,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** dload.php 15 Jul 2008 22:06:42 -0000 1.32 --- dload.php 8 Dec 2008 23:58:04 -0000 1.33 *************** *** 194,198 **** if (!($pafiledb_config['enable_module'] || $mx_user->is_admin)) { ! mx_message_die( GENERAL_MESSAGE, $lang['pafiledb_disable'] ); } --- 194,198 ---- if (!($pafiledb_config['enable_module'] || $mx_user->is_admin)) { ! //mx_message_die( GENERAL_MESSAGE, $lang['pafiledb_disable'] ); } Index: dload_quickdl.php =================================================================== RCS file: /cvsroot/mxbb/mx_pafiledb/dload_quickdl.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** dload_quickdl.php 3 Jun 2008 20:21:57 -0000 1.19 --- dload_quickdl.php 8 Dec 2008 23:58:04 -0000 1.20 *************** *** 59,63 **** if (!($pafiledb_config['enable_module'] || $mx_user->is_admin)) { ! mx_message_die( GENERAL_MESSAGE, $lang['pafiledb_disable'] ); } --- 59,63 ---- if (!($pafiledb_config['enable_module'] || $mx_user->is_admin)) { ! //mx_message_die( GENERAL_MESSAGE, $lang['pafiledb_disable'] ); } |
|
From: FlorinCB <ory...@us...> - 2008-12-08 23:57:40
|
Update of /cvsroot/mxbb/core/includes/shared/phpbb2/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17865/shared/phpbb2/includes Modified Files: functions_search.php Log Message: :) Index: functions_search.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/shared/phpbb2/includes/functions_search.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** functions_search.php 13 Jul 2008 21:29:30 -0000 1.2 --- functions_search.php 8 Dec 2008 23:57:18 -0000 1.3 *************** *** 169,173 **** if ( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Could not select words', '', __LINE__, __FILE__, $sql); } --- 169,173 ---- if ( !($result = $db->sql_query($sql)) ) { ! //mx_message_die(GENERAL_ERROR, 'Could not select words', '', __LINE__, __FILE__, $sql); } *************** *** 206,210 **** if( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql); } break; --- 206,210 ---- if( !$db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql); } break; *************** *** 231,235 **** if ( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql); } } --- 231,235 ---- if ( !$db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, 'Could not insert new word', '', __LINE__, __FILE__, $sql); } } *************** *** 248,252 **** if ( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not insert new word matches', '', __LINE__, __FILE__, $sql); } } --- 248,252 ---- if ( !$db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, 'Could not insert new word matches', '', __LINE__, __FILE__, $sql); } } *************** *** 404,408 **** if ( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not delete old words from word table', '', __LINE__, __FILE__, $sql); } --- 404,408 ---- if ( !$db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, 'Could not delete old words from word table', '', __LINE__, __FILE__, $sql); } *************** *** 416,420 **** if ( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } --- 416,420 ---- if ( !$db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } |
|
From: FlorinCB <ory...@us...> - 2008-12-08 23:57:26
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17865 Modified Files: mx_functions_tools.php Log Message: :) Index: mx_functions_tools.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_tools.php,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** mx_functions_tools.php 6 Nov 2008 00:39:21 -0000 1.51 --- mx_functions_tools.php 8 Dec 2008 23:57:18 -0000 1.52 *************** *** 1210,1214 **** if ( !$result = $db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, "Couldn't insert into $table ", "", __LINE__, __FILE__, $sql ); } } --- 1210,1214 ---- if ( !$result = $db->sql_query( $sql ) ) { ! //mx_message_die( GENERAL_ERROR, "Couldn't insert into $table ", "", __LINE__, __FILE__, $sql ); } } *************** *** 1249,1253 **** if ( !$result = $db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, "Couldn't insert into $table ", "", __LINE__, __FILE__, $sql ); } } --- 1249,1253 ---- if ( !$result = $db->sql_query( $sql ) ) { ! //mx_message_die( GENERAL_ERROR, "Couldn't insert into $table ", "", __LINE__, __FILE__, $sql ); } } *************** *** 1270,1274 **** if ( !$result = $db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, "Couldn't delete $table information", "", __LINE__, __FILE__, $sql ); } } --- 1270,1274 ---- if ( !$result = $db->sql_query( $sql ) ) { ! //mx_message_die( GENERAL_ERROR, "Couldn't delete $table information", "", __LINE__, __FILE__, $sql ); } } *************** *** 1755,1759 **** else { ! mx_message_die(GENERAL_ERROR, 'Bad notify pars - no to_id'); } --- 1755,1759 ---- else { ! //mx_message_die(GENERAL_ERROR, 'Bad notify pars - no to_id'); } *************** *** 1781,1785 **** else { ! mx_message_die(GENERAL_ERROR, 'Error: no subject or no message'); } } --- 1781,1785 ---- else { ! //mx_message_die(GENERAL_ERROR, 'Error: no subject or no message'); } } *************** *** 1811,1815 **** default: ! mx_message_die(GENERAL_ERROR, 'Bad notify type'); } } --- 1811,1815 ---- default: ! //mx_message_die(GENERAL_ERROR, 'Bad notify type'); } } *************** *** 1886,1890 **** if ( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_MESSAGE, $lang['No_such_user']); } --- 1886,1890 ---- if ( !($result = $db->sql_query($sql)) ) { ! //mx_message_die(GENERAL_MESSAGE, $lang['No_such_user']); } *************** *** 1904,1908 **** if ( !$result = $db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not find oldest privmsgs (inbox)', '', __LINE__, __FILE__, $sql); } --- 1904,1908 ---- if ( !$result = $db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, 'Could not find oldest privmsgs (inbox)', '', __LINE__, __FILE__, $sql); } *************** *** 1915,1919 **** if ( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not delete oldest privmsgs (inbox)'.$sql, '', __LINE__, __FILE__, $sql); } --- 1915,1919 ---- if ( !$db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, 'Could not delete oldest privmsgs (inbox)'.$sql, '', __LINE__, __FILE__, $sql); } *************** *** 1923,1927 **** if ( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not delete oldest privmsgs text (inbox)', '', __LINE__, __FILE__, $sql); } } --- 1923,1927 ---- if ( !$db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, 'Could not delete oldest privmsgs text (inbox)', '', __LINE__, __FILE__, $sql); } } *************** *** 1933,1937 **** if ( !($result = $db->sql_query($sql_info)) ) { ! mx_message_die(GENERAL_ERROR, "Could not insert/update private message sent info.", "", __LINE__, __FILE__, $sql_info); } --- 1933,1937 ---- if ( !($result = $db->sql_query($sql_info)) ) { ! //mx_message_die(GENERAL_ERROR, "Could not insert/update private message sent info.", "", __LINE__, __FILE__, $sql_info); } *************** *** 1943,1947 **** if ( !$db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, "Could not insert/update private message sent text.", "", __LINE__, __FILE__, $sql); } --- 1943,1947 ---- if ( !$db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, "Could not insert/update private message sent text.", "", __LINE__, __FILE__, $sql); } *************** *** 1955,1959 **** if ( !$status = $db->sql_query($sql) ) { ! mx_message_die(GENERAL_ERROR, 'Could not update private message new/read status for user', '', __LINE__, __FILE__, $sql); } --- 1955,1959 ---- if ( !$status = $db->sql_query($sql) ) { ! //mx_message_die(GENERAL_ERROR, 'Could not update private message new/read status for user', '', __LINE__, __FILE__, $sql); } *************** *** 1996,2000 **** $msg = $lang['Message_sent'] . '<br /><br />' . sprintf($lang['Click_return_inbox'], '<a href="' . mx_append_sid("privmsg.$phpEx?folder=inbox") . '">', '</a> ') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . mx_append_sid("index.$phpEx") . '">', '</a>'); ! mx_message_die(GENERAL_MESSAGE, $msg); } --- 1996,2000 ---- $msg = $lang['Message_sent'] . '<br /><br />' . sprintf($lang['Click_return_inbox'], '<a href="' . mx_append_sid("privmsg.$phpEx?folder=inbox") . '">', '</a> ') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . mx_append_sid("index.$phpEx") . '">', '</a>'); ! //mx_message_die(GENERAL_MESSAGE, $msg); } *************** *** 2146,2150 **** default: ! mx_message_die(GENERAL_ERROR, 'Bad notify action'); } } --- 2146,2150 ---- default: ! //mx_message_die(GENERAL_ERROR, 'Bad notify action'); } } *************** *** 2161,2172 **** $admin_type = ADMIN; - $sql = "SELECT * - FROM " . USERS_TABLE . " - WHERE user_level = '$admin_type'"; if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, "Could not obtain author data", '', __LINE__, __FILE__, $sql ); } --- 2161,2189 ---- $admin_type = ADMIN; + + switch (PORTAL_BACKEND) + { + case 'internal': + + case 'phpbb2': + + $sql = "SELECT * + FROM " . USERS_TABLE . " + WHERE user_level = '$admin_type'"; + break; + + case 'phpbb3': + + $sql = "SELECT * + FROM " . USERS_TABLE . " + WHERE user_type = 1"; + break; + } + if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, "Could not obtain author data", '', __LINE__, __FILE__, $sql ); } *************** *** 2210,2214 **** if ( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, 'Error getting user list for group', '', __LINE__, __FILE__, $sql); } --- 2227,2231 ---- if ( !($result = $db->sql_query($sql)) ) { ! //mx_message_die(GENERAL_ERROR, 'Error getting user list for group', '', __LINE__, __FILE__, $sql); } *************** *** 2256,2260 **** if (!$dir) { ! mx_message_die(GENERAL_ERROR, 'The module cache need a init dir.'); } --- 2273,2277 ---- if (!$dir) { ! //mx_message_die(GENERAL_ERROR, 'The module cache need a init dir.'); } *************** *** 2489,2493 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Couldnt Query Custom field', '', __LINE__, __FILE__, $sql ); } --- 2506,2510 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Couldnt Query Custom field', '', __LINE__, __FILE__, $sql ); } *************** *** 2504,2508 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Couldnt Query Custom field', '', __LINE__, __FILE__, $sql ); } --- 2521,2525 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Couldnt Query Custom field', '', __LINE__, __FILE__, $sql ); } *************** *** 2588,2592 **** if ( !( $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not delete custom data', '', __LINE__, __FILE__, $sql ); } } --- 2605,2609 ---- if ( !( $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Could not delete custom data', '', __LINE__, __FILE__, $sql ); } } *************** *** 2651,2655 **** if ( !( $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not delete custom data', '', __LINE__, __FILE__, $sql ); } } --- 2668,2672 ---- if ( !( $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Could not delete custom data', '', __LINE__, __FILE__, $sql ); } } *************** *** 2928,2937 **** if ( empty( $field_name ) ) { ! mx_message_die( GENERAL_ERROR, $lang['Missing_field'] ); } if ( ( ( $field_type != INPUT && $field_type != TEXTAREA ) && empty( $data ) ) ) { ! mx_message_die( GENERAL_ERROR, $lang['Missing_field'] ); } --- 2945,2954 ---- if ( empty( $field_name ) ) { ! //mx_message_die( GENERAL_ERROR, $lang['Missing_field'] ); } if ( ( ( $field_type != INPUT && $field_type != TEXTAREA ) && empty( $data ) ) ) { ! //mx_message_die( GENERAL_ERROR, $lang['Missing_field'] ); } *************** *** 2943,2947 **** if ( !( $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not add the new fields', '', __LINE__, __FILE__, $sql ); } --- 2960,2964 ---- if ( !( $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Could not add the new fields', '', __LINE__, __FILE__, $sql ); } *************** *** 2954,2958 **** if ( !( $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not set the order for the giving field', '', __LINE__, __FILE__, $sql ); } } --- 2971,2975 ---- if ( !( $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Could not set the order for the giving field', '', __LINE__, __FILE__, $sql ); } } *************** *** 2965,2969 **** if ( !( $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not update information for the giving field', '', __LINE__, __FILE__, $sql ); } } --- 2982,2986 ---- if ( !( $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Could not update information for the giving field', '', __LINE__, __FILE__, $sql ); } } *************** *** 2984,2988 **** if ( !( $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not delete custom data', '', __LINE__, __FILE__, $sql ); } --- 3001,3005 ---- if ( !( $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Could not delete custom data', '', __LINE__, __FILE__, $sql ); } *************** *** 2992,2996 **** if ( !( $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not delete the selected field', '', __LINE__, __FILE__, $sql ); } } --- 3009,3013 ---- if ( !( $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Could not delete the selected field', '', __LINE__, __FILE__, $sql ); } } *************** *** 3050,3054 **** if ( !$db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not delete data from custom data table', '', __LINE__, __FILE__, $sql ); } --- 3067,3071 ---- if ( !$db->sql_query( $sql ) ) { ! //mx_message_die( GENERAL_ERROR, 'Could not delete data from custom data table', '', __LINE__, __FILE__, $sql ); } *************** *** 3060,3064 **** if ( !$db->sql_query( $sql ) ) { ! mx_message_die( GENERAL_ERROR, 'Could not add additional data', '', __LINE__, __FILE__, $sql ); } } --- 3077,3081 ---- if ( !$db->sql_query( $sql ) ) { ! //mx_message_die( GENERAL_ERROR, 'Could not add additional data', '', __LINE__, __FILE__, $sql ); } } *************** *** 3162,3166 **** $poll_length = ''; ! $error_die_function = ($error_die_function == '') ? "mx_message_die" : $error_die_function; $current_time = ($current_time == 0) ? time() : $current_time; --- 3179,3183 ---- $poll_length = ''; ! $error_die_function = ($error_die_function == '') ? "//mx_message_die" : $error_die_function; $current_time = ($current_time == 0) ? time() : $current_time; *************** *** 3211,3215 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, "Could not obtain first_post_id data", '', __LINE__, __FILE__, $sql ); } --- 3228,3232 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, "Could not obtain first_post_id data", '', __LINE__, __FILE__, $sql ); } *************** *** 3429,3433 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, "Could not obtain first_post_id data", '', __LINE__, __FILE__, $sql ); } --- 3446,3450 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, "Could not obtain first_post_id data", '', __LINE__, __FILE__, $sql ); } *************** *** 3447,3451 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql ); } --- 3464,3468 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql ); } *************** *** 3458,3462 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql ); } --- 3475,3479 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql ); } *************** *** 3464,3468 **** // Add search words // ! add_search_words('single', $first_post_id, stripslashes($message_update_first), stripslashes($subject_update_first)); } --- 3481,3497 ---- // Add search words // ! switch (PORTAL_BACKEND) ! { ! case 'internal': ! break; ! ! case 'phpbb2': ! phpBB2::add_search_words('single', $first_post_id, stripslashes($message_update_first), stripslashes($subject_update_first)); ! ! break; ! case 'phpbb3': ! //To do ! break; ! } } *************** *** 3506,3510 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, "Could not obtain first_post_id data", '', __LINE__, __FILE__, $sql ); } --- 3535,3539 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, "Could not obtain first_post_id data", '', __LINE__, __FILE__, $sql ); } *************** *** 3524,3528 **** if (!$db->sql_query($sql)) { ! mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } --- 3553,3557 ---- if (!$db->sql_query($sql)) { ! //mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } *************** *** 3532,3536 **** if (!$db->sql_query($sql)) { ! mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } --- 3561,3565 ---- if (!$db->sql_query($sql)) { ! //mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } *************** *** 3543,3547 **** if (!$db->sql_query($sql)) { ! mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } --- 3572,3576 ---- if (!$db->sql_query($sql)) { ! //mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } *************** *** 3551,3555 **** if (!$db->sql_query($sql)) { ! mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } } --- 3580,3584 ---- if (!$db->sql_query($sql)) { ! //mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } } *************** *** 3576,3580 **** if (!($result = $db->sql_query($sql))) { ! mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } --- 3605,3609 ---- if (!($result = $db->sql_query($sql))) { ! //mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } *************** *** 3595,3599 **** if (!($result = $db->sql_query($sql))) { ! mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } --- 3624,3628 ---- if (!($result = $db->sql_query($sql))) { ! //mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } *************** *** 3615,3619 **** if (!($result = $db->sql_query($sql))) { ! mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } --- 3644,3648 ---- if (!($result = $db->sql_query($sql))) { ! //mx_message_die(GENERAL_ERROR, 'Error in deleting post', '', __LINE__, __FILE__, $sql); } *************** *** 3634,3638 **** if (!$db->sql_query($sql)) { ! mx_message_die(GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql); } --- 3663,3667 ---- if (!$db->sql_query($sql)) { ! //mx_message_die(GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql); } *************** *** 3645,3649 **** if (!$db->sql_query($sql)) { ! mx_message_die(GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql); } } --- 3674,3678 ---- if (!$db->sql_query($sql)) { ! //mx_message_die(GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql); } } *************** *** 3655,3659 **** if (!$db->sql_query($sql)) { ! mx_message_die(GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql); } } --- 3684,3688 ---- if (!$db->sql_query($sql)) { ! //mx_message_die(GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql); } } *************** *** 3675,3679 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, "Could not obtain topic data", '', __LINE__, __FILE__, $sql ); } --- 3704,3708 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, "Could not obtain topic data", '', __LINE__, __FILE__, $sql ); } *************** *** 3854,3858 **** default: ! mx_message_die(GENERAL_ERROR, 'Bad display comment arg'); } } --- 3883,3887 ---- default: ! //mx_message_die(GENERAL_ERROR, 'Bad display comment arg'); } } *************** *** 4082,4086 **** if ( !isset($this->topic_id) || $this->topic_id < 0 ) { ! mx_message_die( GENERAL_MESSAGE, 'no or bad topic id' ); } --- 4111,4115 ---- if ( !isset($this->topic_id) || $this->topic_id < 0 ) { ! //mx_message_die( GENERAL_MESSAGE, 'no or bad topic id' ); } *************** *** 4328,4332 **** if ( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, "Could not obtain number of comments", '', __LINE__, __FILE__, $sql); } --- 4357,4361 ---- if ( !($result = $db->sql_query($sql)) ) { ! //mx_message_die(GENERAL_ERROR, "Could not obtain number of comments", '', __LINE__, __FILE__, $sql); } *************** *** 4346,4350 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Couldnt select comments', '', __LINE__, __FILE__, $sql ); } --- 4375,4379 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Couldnt select comments', '', __LINE__, __FILE__, $sql ); } *************** *** 4373,4377 **** if ( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, "Could not obtain number of comments", '', __LINE__, __FILE__, $sql); } --- 4402,4406 ---- if ( !($result = $db->sql_query($sql)) ) { ! //mx_message_die(GENERAL_ERROR, "Could not obtain number of comments", '', __LINE__, __FILE__, $sql); } *************** *** 4396,4400 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, "Could not obtain post/user information.", '', __LINE__, __FILE__, $sql ); } --- 4425,4429 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, "Could not obtain post/user information.", '', __LINE__, __FILE__, $sql ); } *************** *** 4423,4427 **** if( !($result = $db->sql_query($sql)) ) { ! mx_message_die(GENERAL_ERROR, "Couldn't get block/Column information", '', __LINE__, __FILE__, $sql); } $count = $db->sql_fetchrow($result); --- 4452,4456 ---- if( !($result = $db->sql_query($sql)) ) { ! //mx_message_die(GENERAL_ERROR, "Couldn't get block/Column information", '', __LINE__, __FILE__, $sql); } $count = $db->sql_fetchrow($result); *************** *** 4439,4443 **** if ( !( $result = $db->sql_query( $sql ) ) ) { ! mx_message_die( GENERAL_ERROR, 'Couldnt update item', '', __LINE__, __FILE__, $sql ); } --- 4468,4472 ---- if ( !( $result = $db->sql_query( $sql ) ) ) { ! //mx_message_die( GENERAL_ERROR, 'Couldnt update item', '', __LINE__, __FILE__, $sql ); } *************** *** 4488,4492 **** default: ! mx_message_die(GENERAL_ERROR, 'bad post mode'); } --- 4517,4521 ---- default: ! //mx_message_die(GENERAL_ERROR, 'bad post mode'); } |
|
From: FlorinCB <ory...@us...> - 2008-11-24 04:21:48
|
Update of /cvsroot/mxbb/core/language/lang_greek In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv8512 Modified Files: lang_meta.php Log Message: coverted to utf-8 Index: lang_meta.php =================================================================== RCS file: /cvsroot/mxbb/core/language/lang_greek/lang_meta.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_meta.php 20 Jul 2008 23:34:16 -0000 1.1 --- lang_meta.php 24 Nov 2008 04:21:39 -0000 1.2 *************** *** 259,263 **** $lang['mx_meta']['langcode']['ve'] = 'Venda'; $lang['mx_meta']['langcode']['vi'] = 'Vietnamese'; ! $lang['mx_meta']['langcode']['vo'] = 'Volapük'; $lang['mx_meta']['langcode']['wa'] = 'Walloon'; $lang['mx_meta']['langcode']['cy'] = 'Welsh'; --- 259,263 ---- $lang['mx_meta']['langcode']['ve'] = 'Venda'; $lang['mx_meta']['langcode']['vi'] = 'Vietnamese'; ! $lang['mx_meta']['langcode']['vo'] = 'Volapük'; $lang['mx_meta']['langcode']['wa'] = 'Walloon'; $lang['mx_meta']['langcode']['cy'] = 'Welsh'; |
|
From: FlorinCB <ory...@us...> - 2008-11-13 15:55:57
|
Update of /cvsroot/mxbb/mx_music/music_box/modules In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv4319 Modified Files: music_list.php Log Message: fix Index: music_list.php =================================================================== RCS file: /cvsroot/mxbb/mx_music/music_box/modules/music_list.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** music_list.php 9 Sep 2008 07:04:33 -0000 1.5 --- music_list.php 13 Nov 2008 15:55:41 -0000 1.6 *************** *** 15,32 **** } - $music_root_path = $module_root_path . 'music_box/'; - - // - // Get general music information - // - if ( !$is_block ) - { - include($music_root_path . 'music_common.'.$phpEx); - } - else - { - include_once($music_root_path . 'music_common.'.$phpEx); - } - /* +---------------------------------------------------------- --- 15,18 ---- |
|
From: FlorinCB <ory...@us...> - 2008-11-08 08:34:05
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv31077 Modified Files: mx_functions_style.php Log Message: fix Index: mx_functions_style.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_style.php,v retrieving revision 1.111 retrieving revision 1.112 diff -C2 -d -r1.111 -r1.112 *** mx_functions_style.php 6 Nov 2008 18:04:37 -0000 1.111 --- mx_functions_style.php 8 Nov 2008 08:33:58 -0000 1.112 *************** *** 717,721 **** $init_style = $mx_request_vars->post('default_style', MX_TYPE_INT, $init_style); ! $theme = $this->_setup_style($init_style, $user_style); } --- 717,721 ---- $init_style = $mx_request_vars->post('default_style', MX_TYPE_INT, $init_style); ! $theme = $this->_setup_style($init_style, $user_style); } *************** *** 729,733 **** function _setup_style($init_style, $user_style = 0) { ! global $db, $board_config, $portal_config, $template, $phpbb_root_path, $mx_root_path, $theme; $row = false; --- 729,735 ---- function _setup_style($init_style, $user_style = 0) { ! global $db, $board_config, $portal_config, $template, $phpbb_root_path, $mx_root_path; ! ! global $images, $theme; $row = false; *************** *** 860,865 **** --- 862,871 ---- // Load images // + /* + * Moved for compatibility to new sessions $this->_load_phpbb_images(); $this->_load_mxbb_images(); + * + */ // *************** *** 970,973 **** --- 976,983 ---- * @access private */ + /** + * Enter description here... + * @access private + */ function _load_phpbb_images() { *************** *** 1116,1120 **** $images[$key] = str_replace(PHPBB_URL . PHPBB_URL, PHPBB_URL, PHPBB_URL . $images[$key]); } ! } } --- 1126,1130 ---- $images[$key] = str_replace(PHPBB_URL . PHPBB_URL, PHPBB_URL, PHPBB_URL . $images[$key]); } ! } } *************** *** 1220,1224 **** $images = &$mx3_images; ! unset($mx_images); } --- 1230,1234 ---- $images = &$mx3_images; ! unset($mx_images); } *************** *** 1362,1365 **** --- 1372,1377 ---- function init_style() { + global $images; + // // The User class must first be initiated. *************** *** 1378,1383 **** // Load images // ! $this->_load_phpbb_images(); ! $this->_load_mxbb_images(); } --- 1390,1395 ---- // Load images // ! $this->_load_phpbb_images(); ! $this->_load_mxbb_images(); } |
|
From: FlorinCB <ory...@us...> - 2008-11-06 20:23:11
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv2829 Modified Files: mx_functions_core.php Log Message: fix like the above fixes Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.113 retrieving revision 1.114 diff -C2 -d -r1.113 -r1.114 *** mx_functions_core.php 5 Nov 2008 23:16:42 -0000 1.113 --- mx_functions_core.php 6 Nov 2008 20:23:07 -0000 1.114 *************** *** 1382,1386 **** $temp = $this->block_config[$this->block_id]; $this->block_info = $temp['block_info']; ! $this->block_parameters = isset($temp['block_parameters']) ? $temp['block_parameters'] : ''; unset($temp); --- 1382,1386 ---- $temp = $this->block_config[$this->block_id]; $this->block_info = $temp['block_info']; ! $this->block_parameters = isset($temp['block_parameters']) ? $temp['block_parameters'] : array(); unset($temp); |
|
From: FlorinCB <ory...@us...> - 2008-11-06 18:04:44
|
Update of /cvsroot/mxbb/core/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv27437/admin Modified Files: index.php Log Message: fix like the above fixes Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/admin/index.php,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** index.php 31 Oct 2008 19:02:20 -0000 1.56 --- index.php 6 Nov 2008 18:04:37 -0000 1.57 *************** *** 92,96 **** $template->set_filenames(array( ! 'body' => 'admin/index_navigate.tpl') ); --- 92,96 ---- $template->set_filenames(array( ! 'body' => 'admin/index_navigate.'.$tplEx) ); *************** *** 279,283 **** $template->set_filenames(array( ! "body" => "admin/index_body.tpl") ); --- 279,283 ---- $template->set_filenames(array( ! "body" => "admin/index_body.".$tplEx) ); *************** *** 310,313 **** --- 310,317 ---- "L_GZIP_COMPRESSION" => $lang['Gzip_compression']) ); + + + $whois_url = "http://network-tools.com/default.asp?host="; + //$whois_url = mx_append_sid(PHPBB_URL . "adm/index.php?i=users&icat=13&mode=overview&action=whois&user_ip="); $mx_backend->load_forum_stats(); *************** *** 413,417 **** "IP_ADDRESS" => $reg_ip, ! "U_WHOIS_IP" => "http://network-tools.com/default.asp?host=$reg_ip", "U_USER_PROFILE" => mx_append_sid(PHPBB_URL . "admin_users.$phpEx?mode=edit&" . POST_USERS_URL . "=" . $onlinerow_reg[$i]['user_id']), "U_FORUM_LOCATION" => mx_append_sid($location_url)) --- 417,421 ---- "IP_ADDRESS" => $reg_ip, ! "U_WHOIS_IP" => $whois_url . $reg_ip, "U_USER_PROFILE" => mx_append_sid(PHPBB_URL . "admin_users.$phpEx?mode=edit&" . POST_USERS_URL . "=" . $onlinerow_reg[$i]['user_id']), "U_FORUM_LOCATION" => mx_append_sid($location_url)) *************** *** 468,471 **** --- 472,476 ---- } } + $row_color = ( $guest_users % 2 ) ? $theme['td_color1'] : $theme['td_color2']; *************** *** 483,487 **** "IP_ADDRESS" => $guest_ip, ! "U_WHOIS_IP" => "http://network-tools.com/default.asp?host=$guest_ip", "U_FORUM_LOCATION" => mx_append_sid($location_url)) ); --- 488,492 ---- "IP_ADDRESS" => $guest_ip, ! "U_WHOIS_IP" => $whois_url . $guest_ip, "U_FORUM_LOCATION" => mx_append_sid($location_url)) ); *************** *** 575,579 **** // $template->set_filenames(array( ! "body" => "admin/index_frameset.tpl") ); --- 580,584 ---- // $template->set_filenames(array( ! "body" => "admin/index_frameset.".$tplEx) ); |
|
From: FlorinCB <ory...@us...> - 2008-11-06 18:04:43
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv27437/includes Modified Files: mx_functions_style.php Log Message: fix like the above fixes Index: mx_functions_style.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_style.php,v retrieving revision 1.110 retrieving revision 1.111 diff -C2 -d -r1.110 -r1.111 *** mx_functions_style.php 6 Nov 2008 00:11:26 -0000 1.110 --- mx_functions_style.php 6 Nov 2008 18:04:37 -0000 1.111 *************** *** 144,152 **** if (isset($mx_block->module_root_path)) { ! $moduleDefault = isset($mx_user->loaded_default_styles[$mx_block->module_root_path]) ? $mx_user->loaded_default_styles[$mx_block->module_root_path] : $mx_user->default_template_name; } else { ! $moduleDefault = isset($mx_user->loaded_default_styles[$module_root_path]) ? $mx_user->loaded_default_styles[$module_root_path] : $mx_user->default_template_name; } --- 144,152 ---- if (isset($mx_block->module_root_path)) { ! $moduleDefault = !empty($mx_user->loaded_default_styles[$mx_block->module_root_path]) ? $mx_user->loaded_default_styles[$mx_block->module_root_path] : $mx_user->default_template_name; } else { ! $moduleDefault = !empty($mx_user->loaded_default_styles[$module_root_path]) ? $mx_user->loaded_default_styles[$module_root_path] : $mx_user->default_template_name; } |
|
From: FlorinCB <ory...@us...> - 2008-11-06 00:57:26
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv2896 Modified Files: page_tail.php Log Message: fix like the above fixes Index: page_tail.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_tail.php,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** page_tail.php 31 Oct 2008 19:02:21 -0000 1.43 --- page_tail.php 6 Nov 2008 00:57:21 -0000 1.44 *************** *** 51,55 **** $template->assign_block_vars('page_last_updated', array( ! 'L_PAGE_UPDATED' => $lang['Page_updated_date'], 'NAME' => $userdata['user_level'] == ADMIN ? $lang['Page_updated_by'] . $editor_name : '', 'TIME' => $edit_time, --- 51,55 ---- $template->assign_block_vars('page_last_updated', array( ! 'L_PAGE_UPDATED' => isset($lang['Page_updated_date']) ? $lang['Page_updated_date'] : 'Page Updated', 'NAME' => $userdata['user_level'] == ADMIN ? $lang['Page_updated_by'] . $editor_name : '', 'TIME' => $edit_time, *************** *** 75,79 **** } ! $debug_output .= sprintf('Time : %.3fs | ' . $db->sql_num_queries() . ' Queries | GZIP : ' . (($board_config['gzip_compress']) ? 'On' : 'Off' ) . ' | Load : ' . (($user->load) ? $user->load : 'N/A'), $totaltime); if (defined('DEBUG_EXTRA')) --- 75,79 ---- } ! $debug_output .= sprintf('Time : %.3fs | ' . @$db->sql_num_queries() . ' Queries | GZIP : ' . (($board_config['gzip_compress']) ? 'On' : 'Off' ) . ' | Load : ' . (($mx_user->load) ? $mx_user->load : 'N/A'), $totaltime); if (defined('DEBUG_EXTRA')) *************** *** 99,103 **** // $mx_addional_footer_text = ''; ! if ( count($mx_page->mxbb_footer_addup) > 0 ) { foreach($mx_page->mxbb_footer_addup as $key => $mx_footer_text) --- 99,103 ---- // $mx_addional_footer_text = ''; ! if (isset($mx_page->mxbb_footer_addup) && (count($mx_page->mxbb_footer_addup) > 0)) { foreach($mx_page->mxbb_footer_addup as $key => $mx_footer_text) |
|
From: FlorinCB <ory...@us...> - 2008-11-06 00:52:12
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv2700 Modified Files: mx_online.php Log Message: Index: mx_online.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/mx_online.php,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** mx_online.php 1 Nov 2008 15:11:48 -0000 1.36 --- mx_online.php 6 Nov 2008 00:52:07 -0000 1.37 *************** *** 75,79 **** { // User is logged in and therefor not a guest ! if ( ($row['session_logged_in'] && PORTAL_BACKEND != 'phpbb3' || ( $row['user_id'] != 1 && PORTAL_BACKEND == 'phpbb3' ) ) ) { // Skip multiple sessions for one user --- 75,79 ---- { // User is logged in and therefor not a guest ! if ($userdata['user_id'] != ANONYMOUS) { // Skip multiple sessions for one user *************** *** 462,467 **** //For comp. with phpBB2 backend ! 'L_WHOSONLINE_ADMIN' => sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>'), ! 'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'), 'L_ONLINE_EXPLAIN' => $lang['Online_explain'], --- 462,467 ---- //For comp. with phpBB2 backend ! 'L_WHOSONLINE_ADMIN' => isset($theme['fontcolor3']) ? sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>') : '', ! 'L_WHOSONLINE_MOD' => isset($theme['fontcolor2']) ? sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>') : '', 'L_ONLINE_EXPLAIN' => $lang['Online_explain'], |
|
From: FlorinCB <ory...@us...> - 2008-11-06 00:47:16
|
Update of /cvsroot/mxbb/core/modules/mx_textblocks In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv2453 Modified Files: mx_textblock_bbcode.php Log Message: fix like the above fixes Index: mx_textblock_bbcode.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_textblocks/mx_textblock_bbcode.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** mx_textblock_bbcode.php 9 Mar 2008 23:39:14 -0000 1.18 --- mx_textblock_bbcode.php 6 Nov 2008 00:47:09 -0000 1.19 *************** *** 66,70 **** 'U_TEXT' => $message, 'BLOCK_ID' => $block_id, ! 'S_HIDDEN_FORM_FIELDS' => $s_hidden_fields )); --- 66,70 ---- 'U_TEXT' => $message, 'BLOCK_ID' => $block_id, ! 'S_HIDDEN_FORM_FIELDS' => isset($s_hidden_fields) ? $s_hidden_fields : '' )); |
|
From: FlorinCB <ory...@us...> - 2008-11-06 00:45:33
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv2386 Modified Files: mx_functions_bbcode.php Log Message: fix like the above fixes Index: mx_functions_bbcode.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_bbcode.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** mx_functions_bbcode.php 4 Oct 2008 07:04:25 -0000 1.16 --- mx_functions_bbcode.php 6 Nov 2008 00:45:27 -0000 1.17 *************** *** 121,125 **** //Start more bbcode $bbcode_tpl['stream'] = str_replace('{URL}', '\\1', $bbcode_tpl['stream']); ! $bbcode_tpl['web'] = str_replace('{URL}', '\\1', $bbcode_tpl['web']); $bbcode_tpl['flash'] = str_replace('{WIDTH}', '\\1', $bbcode_tpl['flash']); $bbcode_tpl['flash'] = str_replace('{HEIGHT}', '\\2', $bbcode_tpl['flash']); --- 121,125 ---- //Start more bbcode $bbcode_tpl['stream'] = str_replace('{URL}', '\\1', $bbcode_tpl['stream']); ! //$bbcode_tpl['web'] = str_replace('{URL}', '\\1', $bbcode_tpl['web']); $bbcode_tpl['flash'] = str_replace('{WIDTH}', '\\1', $bbcode_tpl['flash']); $bbcode_tpl['flash'] = str_replace('{HEIGHT}', '\\2', $bbcode_tpl['flash']); *************** *** 251,254 **** --- 251,258 ---- $patterns[] = "#\[stream:$uid\](.*?)\[/stream:$uid\]#si"; $replacements[] = $bbcode_tpl['stream']; + + // [web]Web URL[/web] code.. + //$patterns[] = "#\[web:$uid\](.*?)\[/web:$uid\]#si"; + //$replacements[] = $bbcode_tpl['web']; // [flash width=X height=X]Flash URL[/flash] code.. *************** *** 357,360 **** --- 361,365 ---- //Start more bbcode $text = str_replace('url:' . $uid, 'url', $text); + $text = str_replace('web:' . $uid, 'web', $text); // [stream]Sound URL[/stream] code.. |
|
From: FlorinCB <ory...@us...> - 2008-11-06 00:39:26
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv2182 Modified Files: mx_functions_tools.php Log Message: some fixes Index: mx_functions_tools.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_tools.php,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** mx_functions_tools.php 31 Oct 2008 19:14:59 -0000 1.50 --- mx_functions_tools.php 6 Nov 2008 00:39:21 -0000 1.51 *************** *** 81,88 **** // Define censored word matches // Note: This is a workaraound for new Olympus style cache. ! // ! $censors = $mx_cache->obtain_word_list(); ! $this->orig_word = $censors['match']; ! $this->replacement_word = $censors['replace']; // --- 81,113 ---- // Define censored word matches // Note: This is a workaraound for new Olympus style cache. ! // ! static $censors; ! ! // We moved the word censor checks in here because we call this function quite often - and then only need to do the check once ! if (!isset($censors) || !is_array($censors)) ! { ! global $mx_user; ! ! // We check here in future if the user is having viewing censors disabled (and also allowed to do so). ! if (!$mx_user->optionget('viewcensors')) ! { ! $censors = array(); ! } ! else ! { ! $censors = $mx_cache->obtain_word_list(); ! } ! } ! ! if (sizeof($censors)) ! { ! $this->orig_word = $censors['match']; ! $this->replacement_word = $censors['replace']; ! } ! else ! { ! $this->orig_word = array(); ! $this->replacement_word = array(); ! } // *************** *** 110,114 **** // Highlight match color // ! $this->highlight_match_color = $theme['fontcolor3']; } --- 135,139 ---- // Highlight match color // ! $this->highlight_match_color = isset($theme['fontcolor3']) ? $theme['fontcolor3'] : 'FFFFFF'; } |
|
From: FlorinCB <ory...@us...> - 2008-11-06 00:16:44
|
Update of /cvsroot/mxbb/core In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv1392 Modified Files: index.php Log Message: fix like the above fixes Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/index.php,v retrieving revision 1.79 retrieving revision 1.80 diff -C2 -d -r1.79 -r1.80 *** index.php 6 Nov 2008 00:08:21 -0000 1.79 --- index.php 6 Nov 2008 00:16:38 -0000 1.80 *************** *** 190,194 **** // ob_start(); ! if (!isset($mx_block->init_error_msg)) { include($module_root_path . $mx_block->block_file); --- 190,194 ---- // ob_start(); ! if (!@$mx_block->init_error_msg) { include($module_root_path . $mx_block->block_file); |
|
From: FlorinCB <ory...@us...> - 2008-11-06 00:11:34
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv1175 Modified Files: mx_functions_style.php Log Message: defined missing var from mx_user class Index: mx_functions_style.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_style.php,v retrieving revision 1.109 retrieving revision 1.110 diff -C2 -d -r1.109 -r1.110 *** mx_functions_style.php 5 Nov 2008 23:34:06 -0000 1.109 --- mx_functions_style.php 6 Nov 2008 00:11:26 -0000 1.110 *************** *** 451,454 **** --- 451,455 ---- var $is_admin = false; + var $keyoptions = false; /**#@-*/ |
|
From: FlorinCB <ory...@us...> - 2008-11-06 00:08:28
|
Update of /cvsroot/mxbb/core In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv1067 Modified Files: index.php Log Message: fix like the above fixes Index: index.php =================================================================== RCS file: /cvsroot/mxbb/core/index.php,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** index.php 9 Jul 2008 20:47:52 -0000 1.78 --- index.php 6 Nov 2008 00:08:21 -0000 1.79 *************** *** 190,194 **** // ob_start(); ! if (!$mx_block->init_error_msg) { include($module_root_path . $mx_block->block_file); --- 190,194 ---- // ob_start(); ! if (!isset($mx_block->init_error_msg)) { include($module_root_path . $mx_block->block_file); |
|
From: FlorinCB <ory...@us...> - 2008-11-06 00:05:49
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv888 Modified Files: template.php Log Message: some temple isuses fixed Index: template.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/template.php,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** template.php 1 Nov 2008 18:13:32 -0000 1.35 --- template.php 6 Nov 2008 00:05:43 -0000 1.36 *************** *** 919,925 **** * includes file or executes code */ ! function execute($filename, $code, $handle) { ! global $lang, $theme, $board_config; global $admin_script; --- 919,925 ---- * includes file or executes code */ ! function execute($filename, $code, $handle, $include_once = true) { ! global $lang, $theme, $board_config, $mx_user; global $admin_script; |
|
From: FlorinCB <ory...@us...> - 2008-11-06 00:00:36
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv615 Modified Files: page_header.php Log Message: added isset for theme vars not defined in phpbb3 backend Index: page_header.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_header.php,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** page_header.php 5 Nov 2008 23:38:00 -0000 1.65 --- page_header.php 6 Nov 2008 00:00:29 -0000 1.66 *************** *** 210,215 **** 'L_SEARCH_UNANSWERED' => $lang['Search_unanswered'], 'L_SEARCH_SELF' => $lang['Search_your_posts'], ! 'L_WHOSONLINE_ADMIN' => sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>'), ! 'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'), 'L_BACK_TO_TOP' => $lang['Back_to_top'], --- 210,215 ---- 'L_SEARCH_UNANSWERED' => $lang['Search_unanswered'], 'L_SEARCH_SELF' => $lang['Search_your_posts'], ! 'L_WHOSONLINE_ADMIN' => isset($theme['fontcolor3']) ? sprintf($lang['Admin_online_color'], '<span style="color:#' . $theme['fontcolor3'] . '">', '</span>') : '', ! 'L_WHOSONLINE_MOD' => isset($theme['fontcolor2']) ? sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>') : '', 'L_BACK_TO_TOP' => $lang['Back_to_top'], *************** *** 218,223 **** 'U_SEARCH_NEW' => mx_append_sid(PHPBB_URL .'search.'.$phpEx.'?search_id=newposts'), ! 'LOGO' => $images['mx_logo'], ! 'THEME_GRAPHICS' => $images['theme_graphics'], 'NAV_IMAGES_HOME' => $images['mx_nav_home'], --- 218,223 ---- 'U_SEARCH_NEW' => mx_append_sid(PHPBB_URL .'search.'.$phpEx.'?search_id=newposts'), ! 'LOGO' => isset($images['mx_logo']) ? $images['mx_logo'] : '', ! 'THEME_GRAPHICS' => isset($images['theme_graphics']) ? $images['theme_graphics'] : '', 'NAV_IMAGES_HOME' => $images['mx_nav_home'], *************** *** 243,248 **** // These theme variables are not used for MX-Publisher, since MX-Publisher require a theme.css file // ! 'T_HEAD_STYLESHEET' => $theme['head_stylesheet'], ! 'T_BODY_BACKGROUND' => $theme['body_background'], 'T_BODY_BGCOLOR' => '#'.$theme['body_bgcolor'], 'T_BODY_TEXT' => '#'.$theme['body_text'], --- 243,248 ---- // These theme variables are not used for MX-Publisher, since MX-Publisher require a theme.css file // ! 'T_HEAD_STYLESHEET' => isset($theme['head_stylesheet']) ? $theme['head_stylesheet'] : '', ! 'T_BODY_BACKGROUND' => isset($theme['body_background']) ? $theme['body_background'] : '', 'T_BODY_BGCOLOR' => '#'.$theme['body_bgcolor'], 'T_BODY_TEXT' => '#'.$theme['body_text'], *************** *** 254,284 **** 'T_TR_COLOR2' => '#'.$theme['tr_color2'], 'T_TR_COLOR3' => '#'.$theme['tr_color3'], ! 'T_TR_CLASS1' => $theme['tr_class1'], ! 'T_TR_CLASS2' => $theme['tr_class2'], ! 'T_TR_CLASS3' => $theme['tr_class3'], ! 'T_TH_COLOR1' => '#'.$theme['th_color1'], ! 'T_TH_COLOR2' => '#'.$theme['th_color2'], ! 'T_TH_COLOR3' => '#'.$theme['th_color3'], ! 'T_TH_CLASS1' => $theme['th_class1'], ! 'T_TH_CLASS2' => $theme['th_class2'], ! 'T_TH_CLASS3' => $theme['th_class3'], ! 'T_TD_COLOR1' => '#'.$theme['td_color1'], ! 'T_TD_COLOR2' => '#'.$theme['td_color2'], ! 'T_TD_COLOR3' => '#'.$theme['td_color3'], ! 'T_TD_CLASS1' => $theme['td_class1'], ! 'T_TD_CLASS2' => $theme['td_class2'], ! 'T_TD_CLASS3' => $theme['td_class3'], ! 'T_FONTFACE1' => $theme['fontface1'], ! 'T_FONTFACE2' => $theme['fontface2'], ! 'T_FONTFACE3' => $theme['fontface3'], ! 'T_FONTSIZE1' => $theme['fontsize1'], ! 'T_FONTSIZE2' => $theme['fontsize2'], ! 'T_FONTSIZE3' => $theme['fontsize3'], ! 'T_FONTCOLOR1' => '#'.$theme['fontcolor1'], ! 'T_FONTCOLOR2' => '#'.$theme['fontcolor2'], ! 'T_FONTCOLOR3' => '#'.$theme['fontcolor3'], ! 'T_SPAN_CLASS1' => $theme['span_class1'], ! 'T_SPAN_CLASS2' => $theme['span_class2'], ! 'T_SPAN_CLASS3' => $theme['span_class3'], //+ MX-Publisher --- 254,284 ---- 'T_TR_COLOR2' => '#'.$theme['tr_color2'], 'T_TR_COLOR3' => '#'.$theme['tr_color3'], ! 'T_TR_CLASS1' => isset($theme['tr_class1']) ? $theme['tr_class1'] : '', ! 'T_TR_CLASS2' => isset($theme['tr_class2']) ? $theme['tr_class2'] : '', ! 'T_TR_CLASS3' => isset($theme['tr_class3']) ? $theme['tr_class3'] : '', ! 'T_TH_COLOR1' => isset($theme['th_color1']) ? '#'.$theme['th_color1'] : '', ! 'T_TH_COLOR2' => isset($theme['th_color2']) ? '#'.$theme['th_color2'] : '', ! 'T_TH_COLOR3' => isset($theme['th_color3']) ? '#'.$theme['th_color3'] : '', ! 'T_TH_CLASS1' => isset($theme['th_class1']) ? $theme['th_class1'] : '', ! 'T_TH_CLASS2' => isset($theme['th_class2']) ? $theme['th_class2'] : '', ! 'T_TH_CLASS3' => isset($theme['th_class3']) ? $theme['th_class3'] : '', ! 'T_TD_COLOR1' => isset($theme['td_color1']) ? '#'.$theme['td_color1'] : '', ! 'T_TD_COLOR2' => isset($theme['td_color2']) ? '#'.$theme['td_color2'] : '', ! 'T_TD_COLOR3' => isset($theme['td_color3']) ? '#'.$theme['td_color3'] : '', ! 'T_TD_CLASS1' => isset($theme['td_class1']) ? $theme['td_class1'] : '', ! 'T_TD_CLASS2' => isset($theme['td_class2']) ? $theme['td_class2'] : '', ! 'T_TD_CLASS3' => isset($theme['td_class3']) ? $theme['td_class3'] : '', ! 'T_FONTFACE1' => isset($theme['fontface1']) ? $theme['fontface1'] : '', ! 'T_FONTFACE2' => isset($theme['fontface2']) ? $theme['fontface2'] : '', ! 'T_FONTFACE3' => isset($theme['fontface3']) ? $theme['fontface3'] : '', ! 'T_FONTSIZE1' => isset($theme['fontsize1']) ? $theme['fontsize1'] : '', ! 'T_FONTSIZE2' => isset($theme['fontsize2']) ? $theme['fontsize2'] : '', ! 'T_FONTSIZE3' => isset($theme['fontsize3']) ? $theme['fontsize3'] : '', ! 'T_FONTCOLOR1' => isset($theme['fontcolor1']) ? '#'.$theme['fontcolor1'] : '', ! 'T_FONTCOLOR2' => isset($theme['fontcolor2']) ? '#'.$theme['fontcolor2'] : '', ! 'T_FONTCOLOR3' => isset($theme['fontcolor3']) ? '#'.$theme['fontcolor3'] : '', ! 'T_SPAN_CLASS1' => isset($theme['span_class1']) ? $theme['span_class1'] : '', ! 'T_SPAN_CLASS2' => isset($theme['span_class2']) ? $theme['span_class2'] : '', ! 'T_SPAN_CLASS3' => isset($theme['span_class3']) ? $theme['span_class3'] : '', //+ MX-Publisher *************** *** 311,315 **** 'MX_ADDITIONAL_JS_FILES' => $mx_addional_js_files, 'MX_ADDITIONAL_HEADER_TEXT' => $mx_addional_header_text, ! 'MX_ICON_CSS' => $images['mx_graphics']['icon_style'], //- MX-Publisher --- 311,315 ---- 'MX_ADDITIONAL_JS_FILES' => $mx_addional_js_files, 'MX_ADDITIONAL_HEADER_TEXT' => $mx_addional_header_text, ! 'MX_ICON_CSS' => isset($images['mx_graphics']['icon_style']) ? $images['mx_graphics']['icon_style'] : '', //- MX-Publisher |
|
From: FlorinCB <ory...@us...> - 2008-11-05 23:38:07
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv32079 Modified Files: page_header.php Log Message: fixed not always defined page_header variables Index: page_header.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_header.php,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 *** page_header.php 31 Oct 2008 19:02:21 -0000 1.64 --- page_header.php 5 Nov 2008 23:38:00 -0000 1.65 *************** *** 153,157 **** // $mx_addional_css_files = ''; ! if ( count($mx_page->mxbb_css_addup) > 0 ) { foreach($mx_page->mxbb_css_addup as $key => $mx_css_path) --- 153,157 ---- // $mx_addional_css_files = ''; ! if (isset($mx_page->mxbb_css_addup) && (count($mx_page->mxbb_css_addup) > 0)) { foreach($mx_page->mxbb_css_addup as $key => $mx_css_path) *************** *** 165,169 **** // $mx_addional_js_files = ''; ! if ( count($mx_page->mxbb_js_addup) > 0 ) { foreach($mx_page->mxbb_js_addup as $key => $mx_js_path) --- 165,169 ---- // $mx_addional_js_files = ''; ! if (isset($mx_page->mxbb_js_addup) && (count($mx_page->mxbb_js_addup) > 0)) { foreach($mx_page->mxbb_js_addup as $key => $mx_js_path) *************** *** 177,181 **** // $mx_addional_header_text = ''; ! if ( count($mx_page->mxbb_header_addup) > 0 ) { foreach($mx_page->mxbb_header_addup as $key => $mx_header_text) --- 177,181 ---- // $mx_addional_header_text = ''; ! if (isset($mx_page->mxbb_header_addup) && (count($mx_page->mxbb_header_addup) > 0)) { foreach($mx_page->mxbb_header_addup as $key => $mx_header_text) |
|
From: FlorinCB <ory...@us...> - 2008-11-05 23:34:12
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv31481 Modified Files: mx_functions_style.php Log Message: fixed not working code Index: mx_functions_style.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_style.php,v retrieving revision 1.108 retrieving revision 1.109 diff -C2 -d -r1.108 -r1.109 *** mx_functions_style.php 5 Nov 2008 23:05:42 -0000 1.108 --- mx_functions_style.php 5 Nov 2008 23:34:06 -0000 1.109 *************** *** 141,147 **** // if (!empty($module_root_path)) ! { ! $moduleDefault = !empty($mx_user->loaded_default_styles[$mx_block->module_root_path]) ? $mx_user->loaded_default_styles[$mx_block->module_root_path] : $mx_user->default_template_name; ! $this->debug_paths .= '<br>Module'; $fileSearch = array(); --- 141,154 ---- // if (!empty($module_root_path)) ! { ! if (isset($mx_block->module_root_path)) ! { ! $moduleDefault = isset($mx_user->loaded_default_styles[$mx_block->module_root_path]) ? $mx_user->loaded_default_styles[$mx_block->module_root_path] : $mx_user->default_template_name; ! } ! else ! { ! $moduleDefault = isset($mx_user->loaded_default_styles[$module_root_path]) ? $mx_user->loaded_default_styles[$module_root_path] : $mx_user->default_template_name; ! } ! $this->debug_paths .= '<br>Module'; $fileSearch = array(); |
|
From: FlorinCB <ory...@us...> - 2008-11-05 23:16:47
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv28672 Modified Files: mx_functions_core.php Log Message: fixed not always defined temp index Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.112 retrieving revision 1.113 diff -C2 -d -r1.112 -r1.113 *** mx_functions_core.php 5 Nov 2008 23:13:38 -0000 1.112 --- mx_functions_core.php 5 Nov 2008 23:16:42 -0000 1.113 *************** *** 1382,1386 **** $temp = $this->block_config[$this->block_id]; $this->block_info = $temp['block_info']; ! $this->block_parameters = $temp['block_parameters']; unset($temp); --- 1382,1386 ---- $temp = $this->block_config[$this->block_id]; $this->block_info = $temp['block_info']; ! $this->block_parameters = isset($temp['block_parameters']) ? $temp['block_parameters'] : ''; unset($temp); |
|
From: FlorinCB <ory...@us...> - 2008-11-05 23:13:46
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv28343 Modified Files: mx_functions_core.php Log Message: Virtual Id is Not Set ? Index: mx_functions_core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_core.php,v retrieving revision 1.111 retrieving revision 1.112 diff -C2 -d -r1.111 -r1.112 *** mx_functions_core.php 5 Nov 2008 23:03:13 -0000 1.111 --- mx_functions_core.php 5 Nov 2008 23:13:38 -0000 1.112 *************** *** 1840,1843 **** --- 1840,1845 ---- $edit_img = '<input type="image" src="' . $block_edit_img . '" alt="' . $block_edit_alt . ' :: ' . $this->block_title . $block_desc . '" title="' . $block_edit_alt . ' :: ' . $this->block_title . $block_desc . '">'; + $this->virtual_id = isset($this->virtual_id) ? $this->virtual_id : ''; //Virtual Id is Not Set ? + $s_hidden_fields .= '<input type="hidden" name="block_id" value="' . $this->block_id . '" />'; $s_hidden_fields .= '<input type="hidden" name="dynamic_block" value="' . $this->dynamic_block_id . '" />'; |
|
From: FlorinCB <ory...@us...> - 2008-11-05 23:05:51
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv27656 Modified Files: mx_functions_style.php Log Message: constant redefinition fixed Index: mx_functions_style.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_style.php,v retrieving revision 1.107 retrieving revision 1.108 diff -C2 -d -r1.107 -r1.108 *** mx_functions_style.php 1 Nov 2008 18:00:59 -0000 1.107 --- mx_functions_style.php 5 Nov 2008 23:05:42 -0000 1.108 *************** *** 971,975 **** { case 'internal': ! define(TEMPLATE_CONFIG, TRUE); break; case 'phpbb2': --- 971,975 ---- { case 'internal': ! @define(TEMPLATE_CONFIG, TRUE); break; case 'phpbb2': *************** *** 1076,1080 **** $images['voting_graphic'] = $this->images('voting_graphic'); ! define('TEMPLATE_CONFIG', TRUE); break; --- 1076,1080 ---- $images['voting_graphic'] = $this->images('voting_graphic'); ! @define('TEMPLATE_CONFIG', TRUE); break; |