Needs review
Project:
Omega
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Jan 2011 at 14:26 UTC
Updated:
21 Sep 2012 at 22:17 UTC
Jump to comment: Most recent file
Line 27 template.php
To hide Notices change the code like that:
// If there is a base theme, collect the names of all themes that may have
// preprocess files to load.
if (isset($theme_info->base_theme)) {
if ($theme_info->base_theme) {
global $base_theme_info;
foreach($base_theme_info as $base){
$themes_active[] = $base->name;
}
}
}
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | stdclass-1032570-3.patch | 467 bytes | kay_v |
| #3 | stdclass-1032570-2.patch | 391 bytes | theohawse |
| #2 | stdclass-1032570-1.patch | 466 bytes | theohawse |
Comments
Comment #1
cainrus commentedMaybe that way will be better.
Comment #2
theohawse commentedattached is patch for changes in #1
Comment #3
theohawse commentedthis is totally working for me
Comment #4
kay_v commentedPatch in #3 didn't apply because it needs a line return after the last line. Here is the new patch with that minor change.