インストールには,手動でプラグイン用のディレクトリを作成し,適切なディレクトリへファイルをコピーする必要があります。
以下の説明で,
を表しています。
$_AEX_CONF['theme_compatibility_info'] = array(
'WAIproCSS' => 'ProfessionalCSS',
);
else
{
$recent_post_anchortag = ' <a href="' . $_CONF['site_url']
. '/comment.php?sid=' . $A['sid']
. '&pid=0&type=article">' . $LANG01[60] . '</a>';
}
$postCommentUrl = $_CONF['site_url'] . '/comment.php?sid='
. $A['sid'] . '&pid=0&type=article';
$article->set_var( 'post_comment_link','<a href="'
. $postCommentUrl . '">' . $LANG01[60] . '</a>' );
$article->set_var( 'lang_post_comment', $LANG01[60] );
$article->set_var( 'start_post_comment_anchortag',
'<a href="' . $postCommentUrl . '">' );
$article->set_var( 'end_post_comment_anchortag', '</a>' );
}
else
{
// changed by dengen for article_ex plugin ---->
// $recent_post_anchortag = ' <a href="' . $_CONF['site_url']
// . '/comment.php?sid=' . $A['sid']
// . '&pid=0&type=article">' . $LANG01[60] . '</a>';
// changed by dengen for article_ex plugin ----|
$recent_post_anchortag = ' <a href="' . $_CONF['site_url'] . '/'
. ((in_array('article_ex', $GLOBALS['_PLUGINS'])
&& ($GLOBALS['_AEX_CONF']['enable_comment_in_article'])) ? 'article.php' : 'comment.php')
. '?sid=' . $A['sid'] . '&pid=0&type=article">' . $LANG01[60] . '</a>';
// changed by dengen for article_ex plugin ----<
}
// changed by dengen for article_ex plugin ---->
// $postCommentUrl = $_CONF['site_url'] . '/comment.php?sid='
// . $A['sid'] . '&pid=0&type=article';
// changed by dengen for article_ex plugin ----|
$postCommentUrl = $_CONF['site_url'] . '/'
. ((in_array('article_ex', $GLOBALS['_PLUGINS'])
&& ($GLOBALS['_AEX_CONF']['enable_comment_in_article'])) ? 'article.php' : 'comment.php')
.'?sid=' . $A['sid'] . '&pid=0&type=article';
// changed by dengen for article_ex plugin ----<
$article->set_var( 'post_comment_link','<a href="'
. $postCommentUrl . '">' . $LANG01[60] . '</a>' );
$article->set_var( 'lang_post_comment', $LANG01[60] );
$article->set_var( 'start_post_comment_anchortag',
'<a href="' . $postCommentUrl . '">' );
$article->set_var( 'end_post_comment_anchortag', '</a>' );
}
RewriteEngine on
RewriteRule article.php(.*)$ article_ex/article_ex.php$1
バージョン | 公開日 | 説明 |
---|---|---|
1.0.1 | 2008.2.6 | 修正 <geeklog_dir>/system/lib-story.php を編集するための、置換用コードの間違いを修正しました。 修正 comment_exテーブルのusernameフィールドの有効文字列長が短すぎたので変更しました。 |
1.0.0 | 2008.2.3 | 初期バージョン |