If you want to change this, go to libs/Utils/PHPCrawlerUtils.class.php and change line 579 from $meta_value = strtolower(trim($matches[2][$x]));
to $meta_value = trim($matches[2][$x]);
All meta attribute values will be in their original case then. I think that should be the standard behaviour anyway, don't know, why the values are converted to lower case.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
View and moderate all "Help" comments posted by this user
Mark all as spam, and block user from posting to "Forum"
When I use
$PageInfo->meta_attributes['description']
, the whole text is in lower case. Is this behaviour intended?View and moderate all "Help" comments posted by this user
Mark all as spam, and block user from posting to "Forum"
If you want to change this, go to libs/Utils/PHPCrawlerUtils.class.php and change line 579 from
$meta_value = strtolower(trim($matches[2][$x]));
to
$meta_value = trim($matches[2][$x]);
All meta attribute values will be in their original case then. I think that should be the standard behaviour anyway, don't know, why the values are converted to lower case.