| Project: | ProjectPier |
| Version: | 0.8.0.3 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | new |
Description
There's an error in the stylesheet_tag() function in /application/helpers/page.php that prevents values int the $attributes parameter to be included in the final output. This is because of a missing assignment in the line
array_merge($all_attributes, $attributes);
It should really be
$all_attributes = array_merge($all_attributes, $attributes);
Patch attached.
Farez
| Attachment | Size |
|---|---|
| page.php_.patch | 503 bytes |