Plugin Directory

Changeset 2908274


Ignore:
Timestamp:
05/04/2023 11:11:26 PM (3 years ago)
Author:
magicoli69
Message:

version 2.3.15

Location:
w4os-opensimulator-web-interface
Files:
278 added
2 edited

Legend:

Unmodified
Added
Removed
  • w4os-opensimulator-web-interface/trunk/readme.txt

    r2878590 r2908274  
    55Requires at least: 5.3.0
    66Requires PHP: 7.3
    7 Tested up to: 6.1.1
    8 Stable tag: 2.3.14
     7Tested up to: 6.2
     8Stable tag: 2.3.15
    99License: AGPLv3
    1010License URI: https://www.gnu.org/licenses/agpl-3.0.txt
     
    5656= WordPress configuration =
    5757
     58Before installing this plugin, make sure your WordPress installation is complete and permalinks are enabled.
     59
     60If upgrading from a different distribution (e.a. switching from github to WordPress Plugin Directory), make sure you disable the installed verssion before activating the new one.
     61
    58621. Download and activate the latest stable release
    59632. Visit OpenSim settings (admin menu > "Opensim" > "Settings")
     
    154158== Changelog ==
    155159
     160= 2.3.15 =
     161* fix array_unique(): Argument #1 ($array) must be of type array, null given on plugin first activation
     162* fix Undefined constant "W4OS_PROFILE_URL" fatal error
     163* prepare 3.x transision
     164
    156165= 2.3.14 =
    157166* fix wrong event time in in-world search (UTC shown instead of grid time)
  • w4os-opensimulator-web-interface/trunk/w4os.php

    r2878590 r2908274  
    33 * Plugin Name:       w4os - OpenSimulator Web Interface
    44 * Description:       WordPress interface for OpenSimulator (w4os).
    5  * Version:           2.3.14
     5 * Version:           2.3.15
    66 * Author:            Speculoos World
    77 * Author URI:        https://speculoos.world
     
    5757// Finally, actually load if no conflict
    5858} else {
    59     require_once plugin_dir_path( __FILE__ ) . 'includes/init.php';
     59    require_once plugin_dir_path( __FILE__ ) . 'legacy/init.php';
    6060    if(file_exists(plugin_dir_path( __FILE__ ) . 'lib/package-updater.php'))
    6161    include_once plugin_dir_path( __FILE__ ) . 'lib/package-updater.php';
    6262
    6363    if(is_admin()) {
    64         require_once (plugin_dir_path(__FILE__) . 'admin/admin-init.php');
     64        require_once (plugin_dir_path(__FILE__) . 'legacy/admin/admin-init.php');
    6565    }
    6666}
Note: See TracChangeset for help on using the changeset viewer.