Symfony: blank page after executing include_component()
Posted
by user248959
on Stack Overflow
See other posts from Stack Overflow
or by user248959
Published on 2010-04-17T20:10:22Z
Indexed on
2010/04/17
20:13 UTC
Read the original article
Hit count: 137
symfony
Hi,
i have this line:
<?php include_component('sfGuardRegister', 'register') ?>
when it's executed i get a blank page. I have debugged include_component() and the flow processing is not entering inside of it, i mean:
function include_component($moduleName, $componentName, $vars = array())
{
die("enter");
echo get_component($moduleName, $componentName, $vars);
}
Any idea?
© Stack Overflow or respective owner