Changeset 840224
- Timestamp:
- 01/17/2014 10:07:10 AM (12 years ago)
- Location:
- reload/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (1 diff)
-
reload-monitor.php (modified) (1 diff)
-
reload.js (modified) (1 diff)
-
reload.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
reload/trunk/readme.txt
r840214 r840224 33 33 == Changelog == 34 34 35 = 1.1. 0=35 = 1.1.1 = 36 36 * Added a really fast check for standard WP installs 37 37 -
reload/trunk/reload-monitor.php
r840214 r840224 5 5 * @link http://bencemeszaros.com 6 6 * @link http://wordpress.org/extend/plugins/reload/ 7 * @version 1.1. 07 * @version 1.1.1 8 8 */ 9 9 -
reload/trunk/reload.js
r840214 r840224 4 4 * @link http://bencemeszaros.com 5 5 * @link http://wordpress.org/plugins/reload/ 6 * @version 1.1. 06 * @version 1.1.1 7 7 */ 8 8 -
reload/trunk/reload.php
r840214 r840224 7 7 Author URI: http://bencemeszaros.com 8 8 Plugin URI: http://wordpress.org/extend/plugins/reload/ 9 Version: 1.1. 09 Version: 1.1.1 10 10 License: GPL2 11 11 */ … … 104 104 105 105 // check if this is a standard directory structure, then we can use the fast file checker instead of the slow wp-admin way 106 $std_uploads = realpath( __DIR__. '/../../uploads');106 $std_uploads = realpath(dirname(__FILE__) . '/../../uploads'); 107 107 if ($std_uploads == realpath($upload_dir['basedir'])) { 108 108 $this->fastCheck = true;
Note: See TracChangeset
for help on using the changeset viewer.