Page 4 of 4

Posted: Fri Jul 27, 2007 8:54 am
by garvinhicking
Hi!

Hm, I can'T really tell what's happening on your page, it basically should work. I believe I would need to check out the installation via FTP to be able to inspect more of this :(

0.8.5 is nearly completely different than recent versions in the permalink handling.

Regards,
Garvin

Posted: Fri Aug 03, 2007 3:59 am
by sprocketlogic
Weird. I figured out the problem. Arrays. Not sure why it was messing things up but this now works:

Code: Select all

<?php

	$page	= array();

	ob_start();
	require 'blog.php';
	$content = ob_get_contents();

	ob_end_clean();
	
	$title = "ACLU Blog";
	
	require_once("./interior_template.php");

?>