HomeHelpTrac

Changeset 10524


Ignore:
Timestamp:
05/15/09 03:29:42 (3 years ago)
Author:
Alexander Levitskiy
Message:

video admin bug fixed

Location:
tags/6.1.5/ray/modules
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • tags/6.1.5/ray/modules/global/inc/content.inc.php

    r10475 r10524  
    8282    require($sModulesPath . $sModule . "/inc/constants.inc.php"); 
    8383 
    84     $sHolder = $aInfo['mode'] == "as3" ? "holder_as3.swf" : "holder.swf"; 
    85     if(isset($aModules[$sApp]['holder'])) $sHolder = $aModules[$sApp]['holder'] . ".swf"; 
    86     $sHolder = $sModulesUrl . GLOBAL_MODULE . "/app/" . $sHolder; 
     84    if(isset($aModules[$sApp]['holder'])) $sHolder = $aModules[$sApp]['holder']; 
     85    else $sHolder = $sModulesUrl . GLOBAL_MODULE . "/app/" . ($aInfo['mode'] == "as3" ? "holder_as3.swf" : "holder.swf"); 
    8786     
    8887    $iWidth = getSettingValue($sModule, $sApp . "_width"); 
  • tags/6.1.5/ray/modules/im/inc/constants.inc.php

    r10349 r10524  
    3333    'invite' => array( 
    3434        'caption' => 'invite', 
    35         'holder' => 'holder', 
     35        'holder' => $sModulesUrl . GLOBAL_MODULE . '/app/holder.swf', 
    3636        'wmode' => 'window', 
    3737        'parameters' => array('id', 'password'), 
  • tags/6.1.5/ray/modules/video/inc/constants.inc.php

    r10326 r10524  
    4646    'admin' => array( 
    4747        'caption' => 'Video Player Admin', 
     48        'holder' => $sModulesUrl . $sModule . "/app/admin.swf", 
    4849        'parameters' => array('nick', 'password'), 
    4950        'js' => array(), 
Note: See TracChangeset for help on using the changeset viewer.