Changeset 46082

Show
Ignore:
Timestamp:
05/15/08 19:56:24 (2 months ago)
Author:
aaron_guitar
Message:

Disabled output buffering for albums because it was causing too many issues.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • fotobook/trunk/fotobook.php

    r45051 r46082  
    913913 
    914914  // buffer the output 
    915   ob_start();  
     915  // ob_start();  
    916916 
    917917  $page_link = get_permalink($page_id);   
     
    976976  <p style="display: none"><?php echo $hidden_bottom ?></p> 
    977977<?php  
    978    
    979   $content .= ob_get_contents(); 
    980   ob_clean(); 
     978  //$content .= ob_get_clean(); 
    981979  return $content; 
    982980}