We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
メインサイトにて /news/ ブログを作成する メインサイトにて /news/ ブログから エイリアス /c_news/を作成する トップページなどで、 $this->BcBaser->blogPosts('news'); などで記事一覧を呼び出す。 呼び出した記事のURLを $this->Blog->getPostLinkUrl($post); などで確認すると、 /news/ archives/{BlogPost.no} ではなく /c_news/ archives/{BlogPost.no} となってしまいます。
$this->BcBaser->blogPosts('news');
$this->Blog->getPostLinkUrl($post);
/news/ archives/{BlogPost.no}
/c_news/ archives/{BlogPost.no}
baserCMS version : 5.0.11 で確認
The text was updated successfully, but these errors were encountered:
fix baserproject#3545 メインサイトでブログのエイリアスを作成すると、Blog->Posts()で呼び出された記事のU…
31e72d0
…RLがすべて1つ目のエイリアスのURLになってしまう問題を解決
53e011d
katokaisya
No branches or pull requests
概要
再現手順
メインサイトにて /news/ ブログを作成する
メインサイトにて /news/ ブログから エイリアス /c_news/を作成する
トップページなどで、
$this->BcBaser->blogPosts('news');
などで記事一覧を呼び出す。
呼び出した記事のURLを
$this->Blog->getPostLinkUrl($post);
などで確認すると、
/news/ archives/{BlogPost.no}
ではなく
/c_news/ archives/{BlogPost.no}
となってしまいます。
baserCMS version : 5.0.11 で確認
The text was updated successfully, but these errors were encountered: