-
-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
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
Final @TODOs added (4 total). #1329
Conversation
looks good, thanks @yayannabelle! |
$template = get_stylesheet_directory() . "/{$custom_field}"; | ||
} else if ( file_exists( get_template_directory() . "/{$custom_field}") ) { | ||
$template = get_template_directory() . "/{$custom_field}"; | ||
if ( file_exists( get_stylesheet_directory() . '/{$custom_field}' ) ) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@aschweigert Can we check that this works? I think that switching to single quotes here breaks the curly-braces interpretation: https://secure.php.net/manual/en/language.operators.string.php#110937
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tests failed to run because the branch was deleted before tests could be run: https://travis-ci.org/INN/Largo/builds/166745124
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, sorry, editing too fast.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure why we're using curly braces here but that's for another day, i suppose
👍 |
My pleasure, glad I could help! |
With reference to issue #963.