2
A few years later, but in case someone else is still troubleshooting this:
Adding
Quote:
global $smartmedia_clip_handler
above the line in question, fixes the error, but it's still broken. Basically, your version of php wasn't seeing $smartmedia_clip_handler as defined for whatever reason.
Upon getting my hands dirty, I also found out that the function in question is incomplete. It never returns a value.
Adding
Quote:
$result = $this->_db->query($sql);
while ($myrow = $this->_db->fetchArray($result)) {
$ret[] = $myrow;
}
return $ret;
to
Quote:
function &getClipsFromAdmin($start=0, $limit=0, $sort='clipid', $order='ASC', $languagesel) in smartmedia/classes/clip.php
should fix it.