Plugin Directory

Changeset 1704798


Ignore:
Timestamp:
07/29/2017 02:37:52 AM (9 years ago)
Author:
reifsnyderb
Message:

Version 1.15

Location:
dms/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • dms/trunk/dms.php

    r1700430 r1704798  
    44Plugin URI: http://blitzenware.com
    55Description: The complete document management solution.
    6 Version: 1.14
     6Version: 1.15
    77Author: Brian E. Reifsnyder
    88Author URI: http://blitzenware.com
     
    2929}
    3030
    31 define( 'DMS_VERSION', '1.14' );
    32 define( 'DMS_RELEASE_DATE', date_i18n( 'F j, Y', strtotime( '07/21/2017' ) ) );
     31define( 'DMS_VERSION', '1.15' );
     32define( 'DMS_RELEASE_DATE', date_i18n( 'F j, Y', strtotime( '07/28/2017' ) ) );
    3333define( 'DMS_DIR', plugin_dir_path( __FILE__ ) );
    3434define( 'DMS_URL', plugin_dir_url( __FILE__ ) );
     
    252252        {
    253253        session_start();
    254 
     254/*
    255255        global $dms_wp_user_id;
    256256        global $dms_user_id;
     
    261261        $dms_global['dms_user_id'] = $dms_user_id;
    262262        $_SESSION['dms_global'] = $dms_global;
     263*/
    263264        }
    264265    }
  • dms/trunk/includes/general/i_db_upgrade.php

    r1700430 r1704798  
    3838        if ($old_version==1.12) dms_update_0112();
    3939        if ($old_version==1.13) dms_update_0113();
     40        if ($old_version==1.14) dms_update_0114();
    4041        $old_version = dms_get_old_version();
    4142
     
    249250    }
    250251
     252function 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
    251262
    252263
  • dms/trunk/includes/languages/english.php

    r1700430 r1704798  
    320320
    321321
     322
     323//  Statistics
     324define("_DMS_L_STATISTICS_STATISTICS","Statistics");
     325define("_DMS_L_STATISTICS_DOCUMENTS","Documents");
     326define("_DMS_L_STATISTICS_FOLDERS","Folders");
     327define("_DMS_L_STATISTICS_INBOXES","Inboxes");
     328define("_DMS_L_STATISTICS_DOC_REPOSITORY","Document Repository");
     329
     330
     331
     332
     333
     334
     335
     336
     337
    322338?>
  • dms/trunk/includes/languages/german.php

    r1700430 r1704798  
    317317
    318318
     319
     320
     321
     322
     323//  Statistics
     324define("_DMS_L_STATISTICS_STATISTICS","Statistik");
     325define("_DMS_L_STATISTICS_DOCUMENTS","Dokumente");
     326define("_DMS_L_STATISTICS_FOLDERS","Verzeichnisse");
     327define("_DMS_L_STATISTICS_INBOXES","Inboxes");
     328define("_DMS_L_STATISTICS_DOC_REPOSITORY","Dokumentenpfad");
     329
     330
     331
     332
     333
     334
     335
     336
     337
     338
    319339?>
    320340
  • dms/trunk/readme.txt

    r1700458 r1704798  
    33Donate link: http://www.blitzenware.com
    44Tags: document management, records manager, customer file manager, document manager, project management, file sharing, enterprise document control, Distribution, Retrieval & storage, Versioning, Productivity, thumbnails
     5
     6
    57Requires at least: 4.5
    68Tested up to: 4.8
     
    102104== Changelog ==
    103105
     106= 1.15 =
     107
     108
     109
    104110= 1.14 =
    105111* Fixed a bug that prevented direct links to documents without first going to the DMS page.
     
    174180== Upgrade Notice ==
    175181
     182= 1.15 =
     183
     184
    176185= 1.14 =
    177186* 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.