ok,
when you go to:
cp.publish.php to line 327
327 /** ----------------------------------------------
328 /** Security check
329 /** ---------------------------------------------*/
330
331 if ( ! in_array($weblog_id, $assigned_weblogs))
332 {
333 return $DSP->no_access_message($LANG->line('unauthorized_for_this_blog'));
334 }
must i put the code like this ?
/** ----------------------------------------------
/** Security check
/** ---------------------------------------------*/
$entry_id = $IN->GBL('entry_id');
if ( ! in_array($weblog_id, $assigned_weblogs))
{
return $DSP->no_access_message($LANG->line('unauthorized_for_this_blog'));
}
And seems like the extension is not adding a new tab to the publish page nor the edit page
i have the following extensions installed:
LG Better Meta (v.Beta 1.2)
Freeform Spam Prevention (v.1.0.2)
Selected Items (v.1.0.0)
Favorites Extension (v.1.0.1)
Live-search (v.1.0.5)
Add Sitename (v.1.1.1)
Intercepts the weblog query result loop and parses for rating stats.
Google/Yahoo Sitemap Ping (v.1.0)
Live Link (v.1.2)
Easy Gallery (v.1.0.0)
EDIT: found the problem:
when i disable all the extensions and enable one by one,
when i enable: Google/Yahoo Sitemap Ping (v.1.0)
the gallery tab does not show up
So it seems they are clashing
seems like LG Better Meta (v.Beta 1.2) does not clash with easy_gallery…and it does add another tab to the publish tab.