XPressME Integration Kit

Trac

Changeset 181


Ignore:
Timestamp:
Apr 19, 2009, 9:22:29 PM (15 years ago)
Author:
toemon
Message:

#107 request_url.phpでのurlチェックでパーマリンクが設定してあると、feedが正しく設定されないバグを修正

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/request_url.php

    r166 r181  
    2222        // index.php check 
    2323        if (strstr($php_query_string,'preview') === false) { 
    24                 if (strstr($php_query_string,'feed') === false) {                
     24                if (strstr($php_query_string,'feed') === false) { 
     25                        // Because the judgment is difficult, the feed to which the permalink is set is confirmed here by the after processing.  
    2526                        return true; 
    2627                } 
  • trunk/wp-config.php

    r179 r181  
    9898        } 
    9999 
    100         if (is_wordpress_style()) { 
     100        // It judges it here because it does in is_index_page() through feed to which the permalink is set.  
     101        if (is_wordpress_style() || is_feed()) { 
    101102                require_once( ABSPATH . WPINC . '/template-loader.php' ); 
    102103        } else { 
  • trunk/xoops_version.php

    r180 r181  
    4040 
    4141// status 
    42 $modversion['codename'] = "Bata2(r180)"; 
     42$modversion['codename'] = "Bata2(r181)"; 
    4343 
    4444// onInstall, onUpdate, onUninstall 
Note: See TracChangeset for help on using the changeset viewer.