Hi MoonSailor:
Thank you for the information and I will look forward to the update.
If anyone else is looking for a quick fix until the update, I edited the following to accomplish this for myself:
components/com_adsmanager/views/details/tmpl/default_block.php
at line 27 I added:
$user = JFactory::getUser();
$db = JFactory::getDbo();
$query = "SELECT group_id FROM `#__user_usergroup_map` WHERE user_id='" . $user->id . "'";
$db->setQuery($query);
$accessLevel= $db->loadResult();
about lines 133 & 261 I changed:
if (! $isCloseThread) {
to:
if (! $isCloseThread && $accessLevel == 10) {
I needed to restrict access to user access level 10
I hope this helps someone.
Ed