Making WordPress.org

Changeset 495


Ignore:
Timestamp:
04/02/2014 07:11:24 PM (11 years ago)
Author:
Otto42
Message:

correct URL and typo. fixes #407

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/official-wordpress-events/official-wordpress-events.php

    r492 r495  
    88
    99class Official_WordPress_Events {
    10     const WORDCAMP_API_BASE_URL = 'https://central.wordcamp.org/wp-json.php';
     10    const WORDCAMP_API_BASE_URL = 'http://central.wordcamp.org/wp-json.php';
    1111    const MEETUP_API_BASE_URL   = 'https://api.meetup.com/';
    1212    const MEETUP_MEMBER_ID      = 72560962;
     
    1717     * @todo
    1818     *
    19      * Setup `owe_error_email_addresses` callback and MEETUP_API_KEY, etc when deploy to production
    2019     * Ability to feature a camp in a hero area
    2120     * Add a "load more" button that retrieves more events via AJAX and updates the DOM. Have each click load the next month of events?
     21     * Update WORDCAMP_API_BASE_URL to use HTTPS when central.wordcamp.org supports it
    2222     */
    2323
     
    9595                    'start_timestamp' => $wordcamp->post_meta->{'Start Date (YYYY-mm-dd)'}[0],
    9696                    'end_timestamp'   => $wordcamp->post_meta->{'End Date (YYYY-mm-dd)'}[0],
    97                     'localtion'       => $wordcamp->post_meta->Location[0]
     97                    'location'        => $wordcamp->post_meta->Location[0],
    9898                ) );
    9999            }
Note: See TracChangeset for help on using the changeset viewer.