This notices only seem to be thrown during the first import of issues (jos_issues has no data)
Undefined variable: data in /cli/retrieveissues.php on line 194
Trying to get property of non-object in /cli/retrieveissues.php on line 194
Undefined variable: currentAssetId in /libraries/joomla/table/table.php on line 778
Try $table->modified = JFactory::getDate($issue->updated_at)->toSql();
Yep. Just submitted the PR :-)
Best,
Matt Thomas
Founder betweenbrain http://betweenbrain.com/™
Lead Developer Construct Template Development
Frameworkhttp://construct-framework.com/
Phone: 203.632.9322
Twitter: @betweenbrain
Github: https://github.com/betweenbrain
On Tue, Dec 18, 2012 at 6:06 PM, Michael Babker notifications@github.comwrote:
Try $table->modified = JFactory::getDate($issue->updated_at)->toSql();
—
Reply to this email directly or view it on GitHubhttps://github.com/JTracker/jissues/issues/44#issuecomment-11509832.
Happy that I figured that out on my own. And, it should have been obvious to me. Eesh!
Seems like
$table->modified = JFactory::getDate($data->issue->updated_at)->toSql();1 in /cli/retrieveissues.php on line 194 should be
$table->modified = JFactory::getDate($issue->issue->updated_at)->toSql();`But, that's just a guess and doesn't resolve the issue.