actions are global so they go on all pages that use them edit one edit all pages.
SEE:
mediaactions.php
after:
switch ($sAct) {
AND
bxdolmedia.php
search:
var $aMainActions
now look at:
function showActionList($aFile) {
if ($this->iViewer) {
if ($this->sType =='photo')
$this->aAddActions['Original_Size']['link'] = str_replace('__file__', $aFile['medID'].'.'.$aFile['medExt'], $this->aAddActions['Original_Size']['link']);
note how they tie together? Fav has its own function:
function addToFavorites
there is a hint as to how to add one:
in function showActionList
you can see:
if ($this->sType =='photo')
$this->aAddActions['Original_Size']
This proly just confused everyone reading but if you go thru these arrays you can kind of see hows its built. I wouldnt do anything more than remove one if you are not comfortable with php.