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
In framework\resources\views\components\article-excerpt.blade.php, the Author name is fetched from the front matter
framework\resources\views\components\article-excerpt.blade.php
<span itemprop="name"> {{ $post->matter['author'] }} </span>
Which can cause the following error: htmlspecialchars(): Argument #1 ($string) must be of type string, array given.
htmlspecialchars(): Argument #1 ($string) must be of type string, array given
This should be able to be fixed by using the $post->author property instead
The text was updated successfully, but these errors were encountered:
Restructure and format component, fix #306
09d8af6
Merge pull request #306 from hydephp/remove-deprecated-internal-trait
bf6cbd5
Delete internal deprecated trait TransfersMediaAssetsForBuildCommands.php hydephp/develop@7997b24
caendesilva
Successfully merging a pull request may close this issue.
In
framework\resources\views\components\article-excerpt.blade.php
, the Author name is fetched from the front matterWhich can cause the following error:
htmlspecialchars(): Argument #1 ($string) must be of type string, array given
.This should be able to be fixed by using the $post->author property instead
The text was updated successfully, but these errors were encountered: