Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Desirae Beberniss http://www.astralmatrix.net

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Joomla Component Breadcrumb fix

// For when you have breadcrumbs enabled in one of your components and the categories aren't getting linked
// In includes/pathway.php around line 287

		// if it is the current page, then display a non hyperlink
		//if ($item->id == $Itemid || empty( $mid ) || empty($item->link)) {
		if (($item->id == $Itemid || empty( $mid ) || empty($item->link)) && !($mainframe->getCustomPathWay())) {

Cannot modify header information - headers already sent by FIX

Buffers output and eliminates problem with spaces/line breaks at the beginning/end of files. Make sure to place ob_start(); before header(); is called.
<?php
ob_start();

header("Location: somepage.php"); //Redirect

ob_end_flush();
exit;
?>
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS