XPressME Integration Kit

Trac

Changeset 421


Ignore:
Timestamp:
Oct 24, 2009, 12:44:20 AM (15 years ago)
Author:
toemon
Message:

デフォルト以外のパーマリンクで個別ページイベント通知設定エラーバグ修正 Fixed #231

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/Ver2.1/xpressme_integration_kit/include/add_xpress_process.php

    r410 r421  
    1919        } 
    2020        wp(); 
     21         
     22        //for Event notification update on single post to which link is changed by permalink 
     23        if ( is_404() ) { 
     24                if (!empty($_POST['not_redirect'])) { 
     25                        include '../../mainfile.php'; 
     26                        require_once XOOPS_ROOT_PATH.'/include/notification_update.php'; 
     27                        exit(); 
     28                } 
     29        } 
    2130         
    2231        if (!function_exists('is_wordpress_style')){    // When the XPressME plug-in is invalid 
  • branches/XPressMU/xpressme_integration_kit/include/add_xpress_process.php

    r410 r421  
    1919        } 
    2020        wp(); 
     21         
     22        //for Event notification update on single post to which link is changed by permalink 
     23        if ( is_404() ) { 
     24                if (!empty($_POST['not_redirect'])) { 
     25                        include '../../mainfile.php'; 
     26                        require_once XOOPS_ROOT_PATH.'/include/notification_update.php'; 
     27                        exit(); 
     28                } 
     29        } 
    2130         
    2231        if (!function_exists('is_wordpress_style')){    // When the XPressME plug-in is invalid 
  • trunk/xpressme_integration_kit/include/add_xpress_process.php

    r410 r421  
    1919        } 
    2020        wp(); 
     21         
     22        //for Event notification update on single post to which link is changed by permalink 
     23        if ( is_404() ) { 
     24                if (!empty($_POST['not_redirect'])) { 
     25                        include '../../mainfile.php'; 
     26                        require_once XOOPS_ROOT_PATH.'/include/notification_update.php'; 
     27                        exit(); 
     28                } 
     29        } 
    2130         
    2231        if (!function_exists('is_wordpress_style')){    // When the XPressME plug-in is invalid 
Note: See TracChangeset for help on using the changeset viewer.