Changeset 664125
- Timestamp:
- 02/06/2013 08:45:58 AM (13 years ago)
- Location:
- mh-board/trunk
- Files:
-
- 3 edited
-
includes/mh-functions.php (modified) (2 diffs)
-
mh-board.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mh-board/trunk/includes/mh-functions.php
r641572 r664125 282 282 function mh_board_replace_filename($file){ 283 283 284 $file['name'] = str_replace('php','php.txt',$file['name']); 284 $file['name'] = str_replace('.php','.php.txt',$file['name']); 285 $file['name'] = str_replace('.html','.html.txt',$file['name']); 286 $file['name'] = str_replace('.htm','.htm.txt',$file['name']); 287 $file['name'] = str_replace('.exe','.exe.txt',$file['name']); 288 285 289 286 290 return $file; … … 451 455 } 452 456 }else if(@$_REQUEST['mh_action'] == 'update' && wp_verify_nonce($_REQUEST['_mh_board_nonce'],'mh_board_nonce')){ 453 print_r($_POST);457 //print_r($_POST); 454 458 $mh_board_update = new MH_Update_Post(); 455 459 $user_id = get_current_user_id() ? get_current_user_id() : 0; -
mh-board/trunk/mh-board.php
r641572 r664125 16 16 * Author: MinHyeong Lim 17 17 * Author URI: http://ssamture.net 18 * Version: 1.2. 518 * Version: 1.2.6 19 19 * Text Domain: mhboard 20 20 * Domain Path: /mhb-languages/ 21 21 */ 22 define('MH_BOARD_VERSION','1.2. 5');22 define('MH_BOARD_VERSION','1.2.6'); 23 23 define('MH_BOARD_UPDATE_URL','http://ssamture.net/mh_board.xml'); 24 24 ini_set('memory_limit', -1); -
mh-board/trunk/readme.txt
r641572 r664125 42 42 43 43 == Changelog == 44 = 1.2.6 = 45 * Update : Security patch 46 * Bugfix : Edit bugfix. 44 47 45 48 = 1.2.5 =
Note: See TracChangeset
for help on using the changeset viewer.