Plugin Directory

Changeset 2878590


Ignore:
Timestamp:
03/12/2023 06:27:20 AM (3 years ago)
Author:
magicoli69
Message:

version 2.3.14

Location:
w4os-opensimulator-web-interface
Files:
252 added
3 edited

Legend:

Unmodified
Added
Removed
  • w4os-opensimulator-web-interface/trunk/helpers/query.php

    r2693962 r2878590  
    341341  while ($row = $query->fetch(PDO::FETCH_ASSOC))
    342342  {
    343     $date = strftime("%m/%d %I:%M %p", $row["dateUTC"]);
     343    $date       = new DateTime("@" . $row["dateUTC"]);
     344    $date->setTimezone(new DateTimeZone('America/Los_Angeles'));
     345    $LSTDate = $date->format("m/d h:i A");
    344346
    345347    //The landing point is only needed when this event query is
     
    349351    "name" => $row["name"],
    350352    "event_id" => $row["eventid"],
    351     "date" => $date,
     353    "date" => $LSTDate,
    352354    "unix_time" => $row["dateUTC"],
    353355    "event_flags" => $row["eventflags"],
  • w4os-opensimulator-web-interface/trunk/readme.txt

    r2878533 r2878590  
    66Requires PHP: 7.3
    77Tested up to: 6.1.1
    8 Stable tag: 2.3.13
     8Stable tag: 2.3.14
    99License: AGPLv3
    1010License URI: https://www.gnu.org/licenses/agpl-3.0.txt
     
    154154== Changelog ==
    155155
     156= 2.3.14 =
     157* fix wrong event time in in-world search (UTC shown instead of grid time)
     158
    156159= 2.3.13 =
    157160* restored WooCommerce Account Dashboar avatar section
  • w4os-opensimulator-web-interface/trunk/w4os.php

    r2878533 r2878590  
    33 * Plugin Name:       w4os - OpenSimulator Web Interface
    44 * Description:       WordPress interface for OpenSimulator (w4os).
    5  * Version:           2.3.13
     5 * Version:           2.3.14
    66 * Author:            Speculoos World
    77 * Author URI:        https://speculoos.world
Note: See TracChangeset for help on using the changeset viewer.