Changeset 10524
- Timestamp:
- 05/15/09 03:29:42 (3 years ago)
- Location:
- tags/6.1.5/ray/modules
- Files:
-
- 4 edited
-
global/inc/content.inc.php (modified) (1 diff)
-
im/inc/constants.inc.php (modified) (1 diff)
-
video/app/admin.swf (modified) (previous)
-
video/inc/constants.inc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tags/6.1.5/ray/modules/global/inc/content.inc.php
r10475 r10524 82 82 require($sModulesPath . $sModule . "/inc/constants.inc.php"); 83 83 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"); 87 86 88 87 $iWidth = getSettingValue($sModule, $sApp . "_width"); -
tags/6.1.5/ray/modules/im/inc/constants.inc.php
r10349 r10524 33 33 'invite' => array( 34 34 'caption' => 'invite', 35 'holder' => 'holder',35 'holder' => $sModulesUrl . GLOBAL_MODULE . '/app/holder.swf', 36 36 'wmode' => 'window', 37 37 'parameters' => array('id', 'password'), -
tags/6.1.5/ray/modules/video/inc/constants.inc.php
r10326 r10524 46 46 'admin' => array( 47 47 'caption' => 'Video Player Admin', 48 'holder' => $sModulesUrl . $sModule . "/app/admin.swf", 48 49 'parameters' => array('nick', 'password'), 49 50 'js' => array(),
Note: See TracChangeset
for help on using the changeset viewer.