XPressME Integration Kit

Trac


Ignore:
Timestamp:
Jul 28, 2009, 6:10:49 PM (15 years ago)
Author:
toemon
Message:

予約投稿、xmlrpc 投稿時のイベント通知問題の修正 fixes #194
イベント通知のデバッグ用の処理追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/xpressme_integration_kit/include/onupdate.php

    r345 r352  
    205205        } 
    206206         
     207        if (! enhanced_table_check($mydirname,'notify_reserve')){ 
     208                $notify_reserve = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_notify_reserve' ; 
     209                $queries ="CREATE TABLE $notify_reserve ( 
     210                        notify_reserve_id bigint(20) NOT NULL AUTO_INCREMENT , 
     211                        notify_reserve_status varchar(20)  NOT NULL default '' , 
     212                        category text  NOT NULL default '', 
     213                        item_id bigint(20) unsigned NOT NULL default '0', 
     214                        event varchar(20) NOT NULL default '', 
     215                        extra_tags_arry longtext NOT NULL default '' , 
     216                        user_list_arry longtext NOT NULL default '' , 
     217                        module_id smallint(5) unsigned NOT NULL default '0' , 
     218                        omit_user_id varchar(20) NOT NULL default '' , 
     219                        KEY notify_reserve_id (notify_reserve_id) 
     220                        )TYPE=MyISAM"; 
     221                $db->queryF( $queries ) ; 
     222                $msgs[] = "$notify_reserve table of XPressME was made."; 
     223        } 
    207224        return $msgs; 
    208225} 
Note: See TracChangeset for help on using the changeset viewer.