Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15378363
D10067.id24216.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
896 B
Referenced Files
None
Subscribers
None
D10067.id24216.diff
View Options
diff --git a/src/applications/phame/skins/PhameBasicTemplateBlogSkin.php b/src/applications/phame/skins/PhameBasicTemplateBlogSkin.php
--- a/src/applications/phame/skins/PhameBasicTemplateBlogSkin.php
+++ b/src/applications/phame/skins/PhameBasicTemplateBlogSkin.php
@@ -41,16 +41,21 @@
$this->cssResources = phutil_implode_html("\n", $this->cssResources);
$request = $this->getRequest();
+
+ // Render page parts in order so the templates execute in order, if we're
+ // using templates.
+ $header = $this->renderHeader();
$content = $this->renderContent($request);
+ $footer = $this->renderFooter();
if (!$content) {
$content = $this->render404Page();
}
$content = array(
- $this->renderHeader(),
+ $header,
$content,
- $this->renderFooter(),
+ $footer,
);
$response = new AphrontWebpageResponse();
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 14, 2:03 PM (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7658991
Default Alt Text
D10067.id24216.diff (896 B)
Attached To
Mode
D10067: Render Phame templates in the expected order
Attached
Detach File
Event Timeline
Log In to Comment