Changeset 1115
- Timestamp:
- 01/09/2015 03:53:03 AM (10 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/class-wporg-themes-upload.php
r1114 r1115 491 491 if ( empty( $this->trac ) ) { 492 492 if ( ! class_exists( 'Trac' ) ) { 493 include_once plugin_dir_path( __FILE__ ) . 'class-trac.php'; 493 require_once ABSPATH . WPINC . '/class-IXR.php'; 494 require_once ABSPATH . WPINC . '/class-wp-http-ixr-client.php'; 495 require_once WPORGPATH . 'bb-theme/themes/lib/class-trac.php'; 494 496 } 495 497 496 $this->trac = new Trac( 'themetracbot', THEME_TRACBOT_PASSWORD, ' themes.trac.wordpress.org', '/login/xmlrpc', 443, true /* is_ssl() */);498 $this->trac = new Trac( 'themetracbot', THEME_TRACBOT_PASSWORD, 'https://themes.trac.wordpress.org/login/xmlrpc' ); 497 499 } 498 500 -
sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/theme-directory.php
r1111 r1115 127 127 128 128 if ( ! class_exists( 'Trac' ) ) { 129 include_once plugin_dir_path( __FILE__ ) . 'class-trac.php'; 130 } 131 132 $trac = new Trac( 'themetracbot', THEME_TRACBOT_PASSWORD, 'themes.trac.wordpress.org', '/login/xmlrpc', 443, true ); 129 require_once ABSPATH . WPINC . '/class-IXR.php'; 130 require_once ABSPATH . WPINC . '/class-wp-http-ixr-client.php'; 131 require_once WPORGPATH . 'bb-theme/themes/lib/class-trac.php'; 132 } 133 134 $trac = new Trac( 'themetracbot', THEME_TRACBOT_PASSWORD, 'https://themes.trac.wordpress.org/login/xmlrpc' ); 133 135 $last_request = get_option( 'wporg-themes-last-trac-sync', strtotime( '-2 days' ) ); 134 136
Note: See TracChangeset
for help on using the changeset viewer.