| 
                        12345678910111213141516171819202122232425 | 
                        - <?php
 - /**
 -  * 多媒体发送
 -  *
 -  * @version        $Id: select_media_post.php 1 9:43 2010年7月8日Z tianya $
 -  * @package        DedeBIZ.Dialog
 -  * @copyright      Copyright (c) 2022, DedeBIZ.COM
 -  * @license        https://www.dedebiz.com/license
 -  * @link           https://www.dedebiz.com
 -  */
 - include_once(dirname(__FILE__).'/config.php');
 - $cfg_softtype = $cfg_mediatype."|mp4";
 - $cfg_soft_dir = $cfg_other_medias;
 - $bkurl = 'select_media.php';
 - $uploadmbtype = "多媒体文件类型";
 - 
 - if (empty($activepath)) {
 -     $activepath = '';
 -     $activepath = str_replace('.', '', $activepath);
 -     $activepath = preg_replace("#\/{1,}#", '/', $activepath);
 -     if (strlen($activepath) < strlen($cfg_other_medias)) {
 -         $activepath = $cfg_other_medias;
 -     }
 - }
 - require_once(dirname(__FILE__)."/select_soft_post.php");
 
 
  |