Instead you should use fuel_edit() like so:
// YES
<?=fuel_edit('my_url', 'Edit Link')?> <a href="<?=site_url($my_url)?>">my link</a>
fuel_edit should be fuel_var
Actually, the documentation is correct (I can see where it's confusing). fuel_edit() won't actually output the value, it just places the inline editing markers and by default will look at the pages module (which is why you only see 2 parameters passed to it). fuel_var() will output the value where you place it.
Comments