Changeset 1007641
- Timestamp:
- 10/15/2014 03:08:07 AM (11 years ago)
- Location:
- media-file-manager
- Files:
-
- 23 added
- 2 edited
-
tags/1.3.0 (added)
-
tags/1.3.0/images (added)
-
tags/1.3.0/images/MRL_Icons.svg (added)
-
tags/1.3.0/images/audio.png (added)
-
tags/1.3.0/images/dir.png (added)
-
tags/1.3.0/images/dir_new.png (added)
-
tags/1.3.0/images/dir_up.png (added)
-
tags/1.3.0/images/file.png (added)
-
tags/1.3.0/images/left.png (added)
-
tags/1.3.0/images/media_folder.png (added)
-
tags/1.3.0/images/no_thumb.png (added)
-
tags/1.3.0/images/right.png (added)
-
tags/1.3.0/images/video.png (added)
-
tags/1.3.0/jquery.appear-1.1.1.min.js (added)
-
tags/1.3.0/media-relocator.js (added)
-
tags/1.3.0/media-relocator.php (added)
-
tags/1.3.0/media-selector.js (added)
-
tags/1.3.0/media-selector.php (added)
-
tags/1.3.0/output_log.php (added)
-
tags/1.3.0/readme.txt (added)
-
tags/1.3.0/screenshot-1.jpg (added)
-
tags/1.3.0/set_document_root.php (added)
-
tags/1.3.0/style.css (added)
-
trunk/media-relocator.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
media-file-manager/trunk/media-relocator.php
r844441 r1007641 4 4 Plugin URI: http://tempspace.net/plugins/?page_id=111 5 5 Description: You can make sub-directories in the upload directory, and move files into them. At the same time, this plugin modifies the URLs/path names in the database. Also an alternative file-selector is added in the editing post/page screen, so you can pick up media files from the subfolders easily. 6 Version: 1.3.0 _test_1401236 Version: 1.3.0 7 7 Author: Atsushi Ueda 8 8 Author URI: http://tempspace.net/plugins/ … … 16 16 define("MLOC_DEBUG", 0); 17 17 18 function dbg2($str){}// $fp=fopen("log.txt","a");fwrite($fp,$str . "\n");fclose($fp);}18 function dbg2($str){}//{$fp=fopen("log.txt","a");fwrite($fp,$str . "\n");fclose($fp);} 19 19 20 20 include 'set_document_root.php'; … … 185 185 } 186 186 } 187 usort($dir1, mrelocator_dircmp);187 usort($dir1, "mrelocator_dircmp"); 188 188 for ($i=count($dir1)-1; $i>=0; $i--) { 189 189 $dir1[$i]['id'] = ""; … … 313 313 global $mrelocator_uploaddir; 314 314 $upload_dir = $mrelocator_uploaddir; 315 $upload_dir = substr($upload_dir, 0, strlen($upload_dir)-strlen($upload_dir_a['subdir']));316 315 $subdir = substr($dir, strlen($upload_dir)); 317 316 if (substr($subdir,0,1)=="/" || substr($subdir,0,1)=="\\") { -
media-file-manager/trunk/readme.txt
r844441 r1007641 4 4 Tags: media,file,manager,explorer,relocate,folder,folders,files,rename,make directory,directories,organize,organizer,select,selector,database 5 5 Requires at least: 3.6.0 6 Tested up to: 3.8.17 Stable tag: 1. 2.16 Tested up to: 4.0.0 7 Stable tag: 1.3.0 8 8 9 9 You can make sub-directories in the upload directory, and move files into them. … … 58 58 = 1.3.0 = 59 59 * Added a permission setting for file selector feature. 60 * Improved behaviour when windows is resized.61 * Corrected background color for WP3.8.60 * Corrected background color. 61 * Fixed some errors. 62 62 63 63 = 1.2.1 =
Note: See TracChangeset
for help on using the changeset viewer.