Zend Framework Removed Zend.php which the Bridge Uses.
====>RELEASE 0.9.3 / 04-May-2007 / based on revision 4727 =
====> ZF-1288 Remove deprecated class Zend.php
Autoloading was moved from Zend.php to a separate file: library/Zend/Loader.php
For Bridge To Work:
if (sfConfig::get('sf_zend_lib_dir'))
{
set_include_path(sfConfig::get('sf_zend_lib_dir').PATH_SEPARATOR.get_include_path());
//require_once(sfConfig::get('sf_zend_lib_dir').'/Zend.php');
require_once(sfConfig::get('sf_zend_lib_dir').'Zend/Loader.php');
try
{
// if (class_exists('Zend_Version'))
if (class_exists('Zend_Loader'))