Changeset 1704798
- Timestamp:
- 07/29/2017 02:37:52 AM (9 years ago)
- Location:
- dms/trunk
- Files:
-
- 5 edited
-
dms.php (modified) (4 diffs)
-
includes/general/i_db_upgrade.php (modified) (2 diffs)
-
includes/languages/english.php (modified) (1 diff)
-
includes/languages/german.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dms/trunk/dms.php
r1700430 r1704798 4 4 Plugin URI: http://blitzenware.com 5 5 Description: The complete document management solution. 6 Version: 1.1 46 Version: 1.15 7 7 Author: Brian E. Reifsnyder 8 8 Author URI: http://blitzenware.com … … 29 29 } 30 30 31 define( 'DMS_VERSION', '1.1 4' );32 define( 'DMS_RELEASE_DATE', date_i18n( 'F j, Y', strtotime( '07/2 1/2017' ) ) );31 define( 'DMS_VERSION', '1.15' ); 32 define( 'DMS_RELEASE_DATE', date_i18n( 'F j, Y', strtotime( '07/28/2017' ) ) ); 33 33 define( 'DMS_DIR', plugin_dir_path( __FILE__ ) ); 34 34 define( 'DMS_URL', plugin_dir_url( __FILE__ ) ); … … 252 252 { 253 253 session_start(); 254 254 /* 255 255 global $dms_wp_user_id; 256 256 global $dms_user_id; … … 261 261 $dms_global['dms_user_id'] = $dms_user_id; 262 262 $_SESSION['dms_global'] = $dms_global; 263 */ 263 264 } 264 265 } -
dms/trunk/includes/general/i_db_upgrade.php
r1700430 r1704798 38 38 if ($old_version==1.12) dms_update_0112(); 39 39 if ($old_version==1.13) dms_update_0113(); 40 if ($old_version==1.14) dms_update_0114(); 40 41 $old_version = dms_get_old_version(); 41 42 … … 249 250 } 250 251 252 function dms_update_0114() 253 { 254 global $dmsdb; 255 256 $query = "UPDATE ".$dmsdb->prefix("dms_config")." "; 257 $query .= "SET data='1.15' WHERE name='version'"; 258 $dmsdb->query($query); 259 } 260 261 251 262 252 263 -
dms/trunk/includes/languages/english.php
r1700430 r1704798 320 320 321 321 322 323 // Statistics 324 define("_DMS_L_STATISTICS_STATISTICS","Statistics"); 325 define("_DMS_L_STATISTICS_DOCUMENTS","Documents"); 326 define("_DMS_L_STATISTICS_FOLDERS","Folders"); 327 define("_DMS_L_STATISTICS_INBOXES","Inboxes"); 328 define("_DMS_L_STATISTICS_DOC_REPOSITORY","Document Repository"); 329 330 331 332 333 334 335 336 337 322 338 ?> -
dms/trunk/includes/languages/german.php
r1700430 r1704798 317 317 318 318 319 320 321 322 323 // Statistics 324 define("_DMS_L_STATISTICS_STATISTICS","Statistik"); 325 define("_DMS_L_STATISTICS_DOCUMENTS","Dokumente"); 326 define("_DMS_L_STATISTICS_FOLDERS","Verzeichnisse"); 327 define("_DMS_L_STATISTICS_INBOXES","Inboxes"); 328 define("_DMS_L_STATISTICS_DOC_REPOSITORY","Dokumentenpfad"); 329 330 331 332 333 334 335 336 337 338 319 339 ?> 320 340 -
dms/trunk/readme.txt
r1700458 r1704798 3 3 Donate link: http://www.blitzenware.com 4 4 Tags: document management, records manager, customer file manager, document manager, project management, file sharing, enterprise document control, Distribution, Retrieval & storage, Versioning, Productivity, thumbnails 5 6 5 7 Requires at least: 4.5 6 8 Tested up to: 4.8 … … 102 104 == Changelog == 103 105 106 = 1.15 = 107 108 109 104 110 = 1.14 = 105 111 * Fixed a bug that prevented direct links to documents without first going to the DMS page. … … 174 180 == Upgrade Notice == 175 181 182 = 1.15 = 183 184 176 185 = 1.14 = 177 186 * Fixed a bug that prevented direct links to documents without first going to the DMS page.
Note: See TracChangeset
for help on using the changeset viewer.