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...> - 2009-01-10 17:11:25
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv1150 Modified Files: page_header.php Log Message: clean up Index: page_header.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_header.php,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** page_header.php 10 Jan 2009 16:37:36 -0000 1.68 --- page_header.php 10 Jan 2009 17:11:19 -0000 1.69 *************** *** 259,262 **** --- 259,270 ---- 'S_LOGIN_ACTION' => mx_append_sid(PORTAL_URL . 'login.'.$phpEx), 'S_ADMIN_AUTH' => $admin, + + //Login page or box constants + 'S_AUTOLOGIN_ENABLED' => ($board_config['allow_autologin']) ? true : false, + 'S_BOARD_DISABLED' => ($board_config['board_disable']) ? true : false, + + //To Do - configurable in AdminCP + //Display full login box with autologin option + 'S_DISPLAY_FULL_LOGIN' => true, //Old phpBB2 Backend Contant |
|
From: FlorinCB <ory...@us...> - 2009-01-10 16:55:58
|
Update of /cvsroot/mxbb/core/templates/subsilver2 In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv501 Added Files: login_body.html Log Message: new login template --- NEW FILE: login_body.html --- <table border="0" cellspacing="10" cellpadding="0" width="100%" class="mx_body_table"> <tr valign="top"> <td> <form action="{S_LOGIN_ACTION}" method="post" target="_top"> <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline" align="center"> <tr> <th height="25" class="thHead" nowrap="nowrap">{L_ENTER_PASSWORD}</th> </tr> <tr> <td class="row1"><table border="0" cellpadding="3" cellspacing="1" width="100%"> <tr> <td colspan="2" align="center"> </td> </tr> <tr> <td width="45%" align="right" <!-- IF S_ADMIN_AUTH -->style="width: 50%; text-align: {S_CONTENT_FLOW_END};"<!-- ENDIF -->><b class="gensmall">{L_USERNAME}:</b></td> <td><input class="post" type="text" name="{USERNAME_CREDENTIAL}" size="25" value="{USERNAME}" tabindex="1" /> <!-- IF not S_ADMIN_AUTH and S_REGISTER_ENABLED --> <br /><a class="gensmall" href="{U_REGISTER}">{L_REGISTER}</a> <!-- ENDIF --> </td> </tr> <tr> <td width="45%" align="right" <!-- IF S_ADMIN_AUTH -->style="width: 50%; text-align: {S_CONTENT_FLOW_END};"<!-- ENDIF -->><b class="gensmall">{L_PASSWORD}:</b></td> <td> <input class="post" type="password" name="{PASSWORD_CREDENTIAL}" size="25" tabindex="2" /> <!-- IF U_SEND_PASSWORD --><br /><a class="gensmall" href="{U_SEND_PASSWORD}">{L_FORGOT_PASS}</a><!-- ENDIF --> <!-- IF U_RESEND_ACTIVATION and not S_ADMIN_AUTH --><br /><a class="gensmall" href="{U_RESEND_ACTIVATION}">{L_RESEND_ACTIVATION}</a><!-- ENDIF --> </td> </tr> <!-- BEGIN switch_allow_autologin --> <tr align="center"> <td colspan="2"><span class="gen">{L_AUTO_LOGIN}: <input type="checkbox" name="autologin" /></span></td> </tr> <!-- END switch_allow_autologin --> <tr align="center"> <td colspan="2"> {S_HIDDEN_FIELDS} <input type="submit" name="login" class="mainoption" value="{L_LOGIN}" /> </td> </tr> </table></td> </tr> </table> </form> </td> </tr> </table> |
|
From: FlorinCB <ory...@us...> - 2009-01-10 16:37:43
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv32191 Modified Files: page_header.php Log Message: clean up Index: page_header.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_header.php,v retrieving revision 1.67 retrieving revision 1.68 diff -C2 -d -r1.67 -r1.68 *** page_header.php 10 Jan 2009 16:15:11 -0000 1.67 --- page_header.php 10 Jan 2009 16:37:36 -0000 1.68 *************** *** 187,190 **** --- 187,206 ---- $useragent = (isset($_SERVER['HTTP_USER_AGENT'])) ? $_SERVER['HTTP_USER_AGENT'] : getenv('HTTP_USER_AGENT'); + + switch (PORTAL_BACKEND) + { + case 'internal': + + case 'phpbb2': + + $admin = ($userdata['session_logged_in'] && $userdata['user_level'] == ADMIN) ? true : false; + break; + + case 'phpbb3': + + $admin = (!$phpbb_auth->acl_get('a_') && $mx_user->data['user_id'] != ANONYMOUS) ? true : false; + break; + } + $layouttemplate->assign_vars(array( 'SITENAME' => $board_config['sitename'], *************** *** 242,246 **** 'S_TIMEZONE' => sprintf($lang['All_times'], $l_timezone), 'S_LOGIN_ACTION' => mx_append_sid(PORTAL_URL . 'login.'.$phpEx), ! 'S_ADMIN_AUTH' => (!$phpbb_auth->acl_get('a_') && $mx_user->data['user_id'] != ANONYMOUS), // --- 258,265 ---- 'S_TIMEZONE' => sprintf($lang['All_times'], $l_timezone), 'S_LOGIN_ACTION' => mx_append_sid(PORTAL_URL . 'login.'.$phpEx), ! 'S_ADMIN_AUTH' => $admin, ! ! //Old phpBB2 Backend Contant ! 'IS_ADMIN' => $admin, // *************** *** 321,327 **** // swithes for logged in users? ! 'USER_LOGGED_IN' => $userdata['session_logged_in'], ! 'USER_LOGGED_OUT' => !$userdata['session_logged_in'], ! 'IS_ADMIN' => $userdata['session_logged_in'] && $userdata['user_level'] == ADMIN, // Do NOT set basedir when in EDIT mode --- 340,351 ---- // swithes for logged in users? ! 'USERNAME' => ($admin) ? $userdata['username'] : '', ! 'USER_LOGGED_IN' => $userdata['session_logged_in'], ! 'USER_LOGGED_OUT' => !$userdata['session_logged_in'], ! ! //This phpBB3 features are disbled for Admins in MXP3 for now and default vaues used ! //To make use of this features Admins can login direct in forums ! 'USERNAME_CREDENTIAL' => 'username', ! 'PASSWORD_CREDENTIAL' => 'password', // Do NOT set basedir when in EDIT mode |
|
From: FlorinCB <ory...@us...> - 2009-01-10 16:15:19
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv31491 Modified Files: mx_functions_admincp.php mx_functions_blockcp.php page_header.php Log Message: some fixes not submited Index: mx_functions_blockcp.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_blockcp.php,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** mx_functions_blockcp.php 13 Jul 2008 19:30:28 -0000 1.28 --- mx_functions_blockcp.php 10 Jan 2009 16:15:11 -0000 1.29 *************** *** 483,487 **** $groupdata[] = $row; } ! $db->sql_freeresult($result); --- 483,487 ---- $groupdata[] = $row; } ! $db->sql_freeresult($result); *************** *** 490,494 **** $delete_groups = @explode(',', $this->block_info['auth_delete_group']); $moderator_groups = @explode(',', $this->block_info['auth_moderator_group']); ! $row_private = ''; for( $i = 0; $i < count($groupdata); $i++ ) --- 490,494 ---- $delete_groups = @explode(',', $this->block_info['auth_delete_group']); $moderator_groups = @explode(',', $this->block_info['auth_moderator_group']); ! $row_private = ''; for( $i = 0; $i < count($groupdata); $i++ ) *************** *** 502,506 **** { $view_checked = in_array($groupdata[$i]['group_id'], $view_groups) ? 'checked="checked"' : ''; ! $row_private .= '<input name="view[]" type="checkbox" ' . $view_checked . 'value="'.$groupdata[$i]['group_id'].'" />'; } else --- 502,506 ---- { $view_checked = in_array($groupdata[$i]['group_id'], $view_groups) ? 'checked="checked"' : ''; ! $row_private .= '<input name="view[]" type="checkbox" ' . $view_checked . 'value="'.$groupdata[$i]['group_id'].'" />'; //To be bugtracked } else Index: page_header.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/page_header.php,v retrieving revision 1.66 retrieving revision 1.67 diff -C2 -d -r1.66 -r1.67 *** page_header.php 6 Nov 2008 00:00:29 -0000 1.66 --- page_header.php 10 Jan 2009 16:15:11 -0000 1.67 *************** *** 232,242 **** 'NAV_IMAGES_REGISTER' => $images['mx_nav_register'], ! 'S_CONTENT_DIRECTION' => $lang['DIRECTION'], ! 'S_CONTENT_ENCODING' => (UTF_STATUS === 'phpbb3') ? 'UTF-8' : $lang['ENCODING'], ! 'S_CONTENT_DIR_LEFT' => $lang['LEFT'], ! 'S_CONTENT_DIR_RIGHT' => $lang['RIGHT'], ! 'S_USER_LANG' => (PORTAL_BACKEND === 'phpbb3') ? $lang['USER_LANG'] : $mx_user->encode_lang($board_config['default_lang']), 'S_TIMEZONE' => sprintf($lang['All_times'], $l_timezone), 'S_LOGIN_ACTION' => mx_append_sid(PORTAL_URL . 'login.'.$phpEx), // --- 232,246 ---- 'NAV_IMAGES_REGISTER' => $images['mx_nav_register'], ! 'S_CONTENT_DIRECTION' => $lang['DIRECTION'] ? $lang['DIRECTION'] : $mx_user->lang['DIRECTION'], ! 'S_CONTENT_DIR_LEFT' => $lang['LEFT'], ! 'S_CONTENT_DIR_RIGHT' => $lang['RIGHT'], ! 'S_CONTENT_FLOW_BEGIN' => ($lang['DIRECTION'] == 'ltr') ? 'left' : 'right', ! 'S_CONTENT_FLOW_END' => ($lang['DIRECTION'] == 'ltr') ? 'right' : 'left', ! 'S_CONTENT_ENCODING' => $lang['ENCODING'] ? $lang['ENCODING'] : 'UTF-8', ! ! 'S_USER_LANG' => $lang['USER_LANG'] ? $lang['USER_LANG'] : $mx_user->encode_lang($board_config['default_lang']), 'S_TIMEZONE' => sprintf($lang['All_times'], $l_timezone), 'S_LOGIN_ACTION' => mx_append_sid(PORTAL_URL . 'login.'.$phpEx), + 'S_ADMIN_AUTH' => (!$phpbb_auth->acl_get('a_') && $mx_user->data['user_id'] != ANONYMOUS), // Index: mx_functions_admincp.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_admincp.php,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** mx_functions_admincp.php 31 Oct 2008 19:02:21 -0000 1.63 --- mx_functions_admincp.php 10 Jan 2009 16:15:11 -0000 1.64 *************** *** 939,942 **** --- 939,946 ---- $edit_groups = @implode(',', $mx_request_vars->post('edit', MX_TYPE_NO_STRIP, '')); $moderator_groups = @implode(',', $mx_request_vars->post('moderator', MX_TYPE_NO_STRIP, '')); + + //$view_groups = $mx_request_vars->post('view', MX_TYPE_NO_STRIP, ''); + + //die("$view_groups"); $sql = "UPDATE " . BLOCK_TABLE . " |
|
From: FlorinCB <ory...@us...> - 2009-01-08 21:18:28
|
Update of /cvsroot/mxbb/mx_smartor In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv18342 Modified Files: db_install.php db_upgrade.php Log Message: fix Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/db_install.php,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** db_install.php 8 Jan 2009 20:43:41 -0000 1.30 --- db_install.php 8 Jan 2009 21:18:15 -0000 1.31 *************** *** 53,57 **** $mx_module_version = '2.9.7'; ! $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mx-publisher.com/" target="_blank">Jon Ohlsson</a> & <a href="http://www.caleacrestina.com/" target="_blank">Florin C. Bodin</a>'; // If upgrading from old mx album --- 53,57 ---- $mx_module_version = '2.9.7'; ! $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by <a href="http://www.mx-publisher.com/" target="_blank">Jon Ohlsson</a> & <a href="http://www.caleacrestina.com/" target="_blank">Florin C. Bodin</a> & <a href="http://www.icyphoenix.com/" target="_blank">Mighty Gorgon</a> & <a href="http://smartor.is-root.com/" target="_blank">Smartor</a>'; // If upgrading from old mx album Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/db_upgrade.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** db_upgrade.php 8 Jan 2009 20:43:41 -0000 1.27 --- db_upgrade.php 8 Jan 2009 21:18:15 -0000 1.28 *************** *** 31,35 **** $mx_module_version = '2.9.7'; ! $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mx-publisher.com/" target="_blank">Jon Ohlsson</a> & <a href="http://www.caleacrestina.com/" target="_blank">Florin C. Bodin</a>'; $sql = array(); --- 31,35 ---- $mx_module_version = '2.9.7'; ! $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by <a href="http://www.mx-publisher.com/" target="_blank">Jon Ohlsson</a> & <a href="http://www.caleacrestina.com/" target="_blank">Florin C. Bodin</a> & <a href="http://www.icyphoenix.com/" target="_blank">Mighty Gorgon</a> & <a href="http://smartor.is-root.com/" target="_blank">Smartor</a>'; $sql = array(); |
|
From: FlorinCB <ory...@us...> - 2009-01-08 20:44:20
|
Update of /cvsroot/mxbb/mx_smartor/album_mod/modules In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv16644/album_mod/modules Modified Files: album_picm.php Log Message: Version 2.9.7 - album mid pic fixed to resize GIF files on the fly ;) Index: album_picm.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/modules/album_picm.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** album_picm.php 4 Sep 2008 20:36:18 -0000 1.4 --- album_picm.php 8 Jan 2009 20:43:41 -0000 1.5 *************** *** 121,125 **** $album_user_access = album_user_access($cat_id, $thiscat, 1, 0, 1, 1, 1, 1); ! if (($auth_data['view'] == 0) && ($album_user_access['view'] == false)) { mx_message_die(GENERAL_MESSAGE, $lang['Not_Authorised']); --- 121,125 ---- $album_user_access = album_user_access($cat_id, $thiscat, 1, 0, 1, 1, 1, 1); ! if (($album_user_access['view'] == 0) && ($album_user_access['view'] == false)) { mx_message_die(GENERAL_MESSAGE, $lang['Not_Authorised']); *************** *** 185,189 **** */ - // ------------------------------------ // Send Thumbnail to browser --- 185,188 ---- *************** *** 195,198 **** --- 194,274 ---- // GD does not support GIF so we must SEND a premade No-thumbnail pic then EXIT // -------------------------------- + + + if ($pic_thumbnail) + { + $thumbnail_size = 500; + $thumbnail_width = ($album_sp_config['midthumb_width']) ? $album_sp_config['midthumb_width'] : 350; + $thumbnail_height = ($album_sp_config['midthumb_height']) ? $album_sp_config['midthumb_height'] : 350; + + switch ($pic_filetype) + { + case '.gif': + $file_header = 'Content-type: image/gif'; + $read_function = 'imagecreatefromgif'; + break; + case '.jpeg': + case '.jpg': + case '.pjpeg': + $file_header = 'Content-type: image/jpeg'; + $read_function = 'imagecreatefromjpeg'; + break; + case '.png': + $file_header = 'Content-type: image/png'; + $read_function = 'imagecreatefrompng'; + break; + default: + header('Content-type: image/jpeg'); + $file_header = 'Content-type: image/jpeg'; + $read_function = 'imagecreatefromjpeg'; + } + + header($file_header); + + $pic_size = @getimagesize($pic_fullpath); + $pic_width = $pic_size[0]; + $pic_height = $pic_size[1]; + + + if ($pic_width > $pic_height) + { + $thumbnail_width = $thumbnail_size; + $thumbnail_height = $thumbnail_size * ($pic_height / $pic_width); + } + else + { + $thumbnail_height = $thumbnail_size; + $thumbnail_width = $thumbnail_size * ($pic_width / $pic_height); + } + + $thumbnail = @imagecreatetruecolor($thumbnail_width, $thumbnail_height); + + $resize_function = 'imagecopyresampled'; + + $source = $read_function($pic_fullpath); + + @$resize_function($thumbnail, $source, 0, 0, 0, 0, $thumbnail_width, $thumbnail_height, $pic_width, $pic_height); + + + switch ($pic_filetype) + { + case '.gif': + imagegif($thumbnail); + break; + case '.jpeg': + case '.jpg': + case '.pjpeg': + imagejpeg($thumbnail); + break; + case '.png': + imagepng($thumbnail); + break; + default: + return false; + } + + imagedestroy($thumbnail); + + } header('Content-type: image/jpeg'); *************** *** 206,210 **** // -------------------------------- ! if( ($album_sp_config['midthumb_cache'] == 1) and ($pic_thumbnail != '') and file_exists(ALBUM_MED_CACHE_PATH . $pic_thumbnail) ) { switch ($pic_filetype) --- 282,286 ---- // -------------------------------- ! if( ($album_sp_config['midthumb_cache'] == 1) and ($pic_thumbnail != '') and file_exists($pic_med_fullpath) ) { switch ($pic_filetype) |
|
From: FlorinCB <ory...@us...> - 2009-01-08 20:43:50
|
Update of /cvsroot/mxbb/mx_smartor/album_mod/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv16644/album_mod/includes Modified Files: album_constants.php Log Message: Version 2.9.7 - album mid pic fixed to resize GIF files on the fly ;) Index: album_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/includes/album_constants.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** album_constants.php 29 Aug 2008 13:44:31 -0000 1.11 --- album_constants.php 8 Jan 2009 20:43:41 -0000 1.12 *************** *** 75,78 **** --- 75,89 ---- $tplEx = ($tplEx) ? $tplEx : 'tpl'; + $default_lang = ($mx_user->lang['default_lang']) ? $mx_user->lang['default_lang'] : $board_config['default_lang']; + + if ( empty($default_lang) ) + { + // - populate $default_lang + $default_lang= 'english'; + } + + //fix + $images['no_thumbnail'] = ($images['no_thumbnail']) ? $images['no_thumbnail'] : $module_root_path . "templates/_core/images/lang_" . $default_lang . "/nothumbnail.jpg"; + // Album Tables !defined('ALBUM_TABLE') ? define('ALBUM_TABLE', $mx_table_prefix.'smartor_album') : false; |
|
From: FlorinCB <ory...@us...> - 2009-01-08 20:43:50
|
Update of /cvsroot/mxbb/mx_smartor/templates/_core/images/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv16644/templates/_core/images/lang_romanian Added Files: icon_ip.gif nothumbnail.jpg nothumbnail_2.jpg Log Message: Version 2.9.7 - album mid pic fixed to resize GIF files on the fly ;) --- NEW FILE: nothumbnail_2.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nothumbnail.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_ip.gif --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2009-01-08 20:43:50
|
Update of /cvsroot/mxbb/mx_smartor In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv16644 Modified Files: album.php db_install.php db_upgrade.php Log Message: Version 2.9.7 - album mid pic fixed to resize GIF files on the fly ;) Index: album.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** album.php 5 Sep 2008 03:18:49 -0000 1.26 --- album.php 8 Jan 2009 20:43:41 -0000 1.27 *************** *** 321,325 **** else if ( $mode == 'album_picm' ) { ! error_reporting(0); //Errors will coupt thumbnalis include($album_root_path. 'modules/album_picm.'.$phpEx); } --- 321,325 ---- else if ( $mode == 'album_picm' ) { ! error_reporting(E_ALL); //Errors will coupt thumbnalis include($album_root_path. 'modules/album_picm.'.$phpEx); } Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/db_install.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** db_install.php 23 Dec 2008 06:47:38 -0000 1.29 --- db_install.php 8 Jan 2009 20:43:41 -0000 1.30 *************** *** 52,58 **** } ! $mx_module_version = '2.9.6'; ! $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mxbb.net" target="_blank">The Mx-Publisher Development Team</a>'; ! // If upgrading from old mx album --- 52,57 ---- } ! $mx_module_version = '2.9.7'; ! $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mx-publisher.com/" target="_blank">Jon Ohlsson</a> & <a href="http://www.caleacrestina.com/" target="_blank">Florin C. Bodin</a>'; // If upgrading from old mx album Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/db_upgrade.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** db_upgrade.php 23 Dec 2008 06:58:37 -0000 1.26 --- db_upgrade.php 8 Jan 2009 20:43:41 -0000 1.27 *************** *** 30,35 **** } ! $mx_module_version = '2.9.6'; ! $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mxbb.net" target="_blank">The Mx-Publisher Development Team</a>'; $sql = array(); --- 30,35 ---- } ! $mx_module_version = '2.9.7'; ! $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mx-publisher.com/" target="_blank">Jon Ohlsson</a> & <a href="http://www.caleacrestina.com/" target="_blank">Florin C. Bodin</a>'; $sql = array(); |
|
From: FlorinCB <ory...@us...> - 2009-01-07 12:17:04
|
Update of /cvsroot/mxbb/mx_contact/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv30972 Modified Files: admin_mass_newsletter.php Log Message: fix Index: admin_mass_newsletter.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/admin/admin_mass_newsletter.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** admin_mass_newsletter.php 1 Jan 2009 07:30:51 -0000 1.11 --- admin_mass_newsletter.php 7 Jan 2009 11:39:33 -0000 1.12 *************** *** 265,271 **** $emailer->assign_vars(array( ! 'SITENAME' => $board_config['sitename'], ! 'BOARD_EMAIL' => $board_config['board_email'], ! 'MESSAGE' => htmlspecialchars_decode($message)) ); --- 265,271 ---- $emailer->assign_vars(array( ! 'SITENAME' => $board_config['sitename'], ! 'BOARD_EMAIL' => $board_config['board_email'], ! 'MESSAGE' => $message) ); |
|
From: FlorinCB <ory...@us...> - 2009-01-01 07:30:58
|
Update of /cvsroot/mxbb/mx_contact/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv29963 Modified Files: admin_mass_mail.php admin_mass_newsletter.php Log Message: fix Index: admin_mass_mail.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/admin/admin_mass_mail.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** admin_mass_mail.php 25 Dec 2008 18:19:06 -0000 1.9 --- admin_mass_mail.php 1 Jan 2009 07:30:51 -0000 1.10 *************** *** 253,257 **** $email_antetes .= "X-AntiAbuse: UserName - " . $userdata['username'] . "\n"; $email_antetes .= "X-AntiAbuse: User_IP - " . contact_decode_ip($user_ip) . "\n"; ! $email_antetes .= "X-AntiAbuse: User_Level - " . ($userdata['user_level'] == ADMIN) ? "Portal Admin" : "User Level: " . $userdata['user_level'] . "\n"; $emailer->set_mail_html(true); --- 253,258 ---- $email_antetes .= "X-AntiAbuse: UserName - " . $userdata['username'] . "\n"; $email_antetes .= "X-AntiAbuse: User_IP - " . contact_decode_ip($user_ip) . "\n"; ! $email_antetes .= "X-AntiAbuse: User_Level - " . ($userdata['user_level'] == ADMIN) ? "Portal Admin" : "User Level: " . $userdata['user_level'] . "\n"; ! $email_antetes .= "\n"; $emailer->set_mail_html(true); Index: admin_mass_newsletter.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/admin/admin_mass_newsletter.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** admin_mass_newsletter.php 25 Dec 2008 18:19:06 -0000 1.10 --- admin_mass_newsletter.php 1 Jan 2009 07:30:51 -0000 1.11 *************** *** 254,266 **** $email_antetes .= "X-AntiAbuse: User_id - " . $userdata['user_id'] . "\n"; $email_antetes .= "X-AntiAbuse: UserName - " . $userdata['username'] . "\n"; ! $email_antetes .= "X-AntiAbuse: User_IP - " . contact_decode_ip($user_ip) . "\n"; ! $email_antetes .= "X-AntiAbuse: User_Level - " . ($userdata['user_level'] == ADMIN) ? "Portal Admin" : "User Level: " . $userdata['user_level'] . "\n"; ! ! ! $emailer->set_mail_html(true); ! ! //$emailer->from($board_config['board_email']); ! //$emailer->replyto($userdata['board_email']); $emailer->use_template('contact_send_email'); $emailer->email_address($board_config['board_email']); --- 254,262 ---- $email_antetes .= "X-AntiAbuse: User_id - " . $userdata['user_id'] . "\n"; $email_antetes .= "X-AntiAbuse: UserName - " . $userdata['username'] . "\n"; ! $email_antetes .= "X-AntiAbuse: User_IP - " . contact_decode_ip($user_ip) . "\n"; ! $email_antetes .= "X-AntiAbuse: User_Level - " . ($userdata['user_level'] == ADMIN) ? "Portal Admin" : "User Level: " . $userdata['user_level'] . "\n"; ! $email_antetes .= "\n"; + $emailer->set_mail_html(true); $emailer->use_template('contact_send_email'); $emailer->email_address($board_config['board_email']); |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:18:18
|
Update of /cvsroot/mxbb/phpbb2mxp/templates/subSilver/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11757/admin Log Message: Directory /cvsroot/mxbb/phpbb2mxp/templates/subSilver/admin added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:18:09
|
Update of /cvsroot/mxbb/phpbb2mxp/templates/subSilver/images In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11757/images Log Message: Directory /cvsroot/mxbb/phpbb2mxp/templates/subSilver/images added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:18:06
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_romanian/email In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11581/email Log Message: Directory /cvsroot/mxbb/phpbb2mxp/language/lang_romanian/email added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:17:57
|
Update of /cvsroot/mxbb/phpbb2mxp/templates/subSilver/images/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11825/lang_romanian Log Message: Directory /cvsroot/mxbb/phpbb2mxp/templates/subSilver/images/lang_romanian added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:17:54
|
Update of /cvsroot/mxbb/phpbb2mxp/templates/subSilver/images/lang_english In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11825/lang_english Log Message: Directory /cvsroot/mxbb/phpbb2mxp/templates/subSilver/images/lang_english added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:17:51
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_greek In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11344/lang_greek Log Message: Directory /cvsroot/mxbb/phpbb2mxp/language/lang_greek added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:17:48
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_english In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11344/lang_english Log Message: Directory /cvsroot/mxbb/phpbb2mxp/language/lang_english added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:17:45
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_romanian_no_diacritics In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11344/lang_romanian_no_diacritics Log Message: Directory /cvsroot/mxbb/phpbb2mxp/language/lang_romanian_no_diacritics added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:17:36
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11344/lang_romanian Log Message: Directory /cvsroot/mxbb/phpbb2mxp/language/lang_romanian added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:17:27
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_swedish In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11344/lang_swedish Log Message: Directory /cvsroot/mxbb/phpbb2mxp/language/lang_swedish added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:17:19
|
Update of /cvsroot/mxbb/phpbb2mxp/templates/subSilver In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11688/subSilver Log Message: Directory /cvsroot/mxbb/phpbb2mxp/templates/subSilver added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:17:10
|
Update of /cvsroot/mxbb/phpbb2mxp/includes/utf In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv10923/utf Log Message: Directory /cvsroot/mxbb/phpbb2mxp/includes/utf added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:17:02
|
Update of /cvsroot/mxbb/phpbb2mxp/includes/db In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv10923/db Log Message: Directory /cvsroot/mxbb/phpbb2mxp/includes/db added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:16:53
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_english/email In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11443/email Log Message: Directory /cvsroot/mxbb/phpbb2mxp/language/lang_english/email added to the repository |