I'm not sure if this is a bug, but Open File at Cursor doesn't work if you have a filepath that PhpEd might not understand.
This does not work:
$smarty->assign(array('PAGE' => 'admin/product_form.tpl.smrt'));
|
This works:
$smarty->assign(array('PAGE' => 'product_form.tpl.smrt'));
|
The project has the following folders:
public_html/
public_html/admin
includes/
templates
templates/admin
PHP files in the admin folder use templates from the templates/admin folder. The above code is from the admin folder.
Is this a bug? I figure that PHPEd should try to match the filename regardless of the path.[/code]