Closed (fixed)
Project:
E-Publish
Version:
master
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 May 2006 at 10:43 UTC
Updated:
13 Jun 2006 at 15:45 UTC
theme_epublish_format_pub() returns:
return theme('page', "<div class=\"epublish\">$output</div>");
on line 824, but this will draw the entire page inside of itself. My fix was to elimate the theme() function:
return '<div class=\"epublish\">' . $output . '</div>';
...although I don't know if this is necessarily the right way to do it.
| Comment | File | Size | Author |
|---|---|---|---|
| screenshot_1.jpeg | 93.57 KB | matt@antinomia |
Comments
Comment #1
sheldon rampton commentedThanks, fixed it!
Comment #2
(not verified) commented