I have a site where I'm allowing registered users to post records about their horses using ChronoForms and then generating lists of those horses using ChronoConnectivity. http://vaultinghorses.org/index.php?option=com_chronoconnectivity&Itemid=19
How can I allow the original posting user edit / update records for their horses?
Thanks
Tom Sayles
How can I allow the original posting user edit / update records for their horses?
Thanks
Tom Sayles
I think I found my own answer.
<?php
$user =& JFactory::getUser();
if ($user->id == $row->cf_user_id) {
echo "{edit_record}<br>\n";
};
?>
This topic is locked and no more replies can be posted.
