Changeset 5843
- Timestamp:
- 08/03/2007 12:45:06 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/update-links.php
r4495 r5843 1 1 <?php 2 require_once( dirname( dirname(__FILE__) ) . '/wp-config.php');2 require_once('../wp-config.php'); 3 3 require_once( ABSPATH . 'wp-includes/class-snoopy.php'); 4 4 -
trunk/wp-app.php
r5765 r5843 10 10 define('APP_REQUEST', true); 11 11 12 require_once(' wp-config.php');13 require_once( 'wp-includes/post-template.php');12 require_once('./wp-config.php'); 13 require_once(ABSPATH . WPINC . '/post-template.php'); 14 14 15 15 // Attempt to automatically detect whether to use querystring -
trunk/wp-atom.php
r4927 r5843 2 2 3 3 if (empty($wp)) { 4 require_once(' wp-config.php');4 require_once('./wp-config.php'); 5 5 wp('feed=atom'); 6 6 } -
trunk/wp-commentsrss2.php
r4927 r5843 2 2 3 3 if (empty($wp)) { 4 require_once(' wp-config.php');4 require_once('./wp-config.php'); 5 5 wp('feed=rss2&withcomments=1'); 6 6 } -
trunk/wp-cron.php
r5274 r5843 2 2 ignore_user_abort(true); 3 3 define('DOING_CRON', TRUE); 4 require_once(' wp-config.php');4 require_once('./wp-config.php'); 5 5 6 6 if ( $_GET['check'] != wp_hash('187425') ) -
trunk/wp-rdf.php
r4927 r5843 2 2 3 3 if (empty($wp)) { 4 require_once(' wp-config.php');4 require_once('./wp-config.php'); 5 5 wp('feed=rdf'); 6 6 } -
trunk/wp-rss.php
r4927 r5843 2 2 3 3 if (empty($wp)) { 4 require_once(' wp-config.php');4 require_once('./wp-config.php'); 5 5 wp('feed=rss'); 6 6 } -
trunk/wp-rss2.php
r4927 r5843 2 2 3 3 if (empty($wp)) { 4 require_once(' wp-config.php');4 require_once('./wp-config.php'); 5 5 wp('feed=rss2'); 6 6 } -
trunk/wp-trackback.php
r5087 r5843 2 2 3 3 if (empty($wp)) { 4 require_once(' wp-config.php');4 require_once('./wp-config.php'); 5 5 wp('tb=1'); 6 6 }
Note: See TracChangeset
for help on using the changeset viewer.