From: <for...@us...> - 2012-05-26 08:13:56
|
Revision: 9592 http://xoops.svn.sourceforge.net/xoops/?rev=9592&view=rev Author: forxoops Date: 2012-05-26 08:13:50 +0000 (Sat, 26 May 2012) Log Message: ----------- Add media directory for browse.php Modified Paths: -------------- XoopsCore/branches/2.6.x/2.6.0/htdocs/class/xoops.php Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/class/xoops.php =================================================================== --- XoopsCore/branches/2.6.x/2.6.0/htdocs/class/xoops.php 2012-05-25 15:52:41 UTC (rev 9591) +++ XoopsCore/branches/2.6.x/2.6.0/htdocs/class/xoops.php 2012-05-26 08:13:50 UTC (rev 9592) @@ -109,7 +109,8 @@ 'var' => array(), 'lib' => array(), 'modules' => array(), - 'themes' => array() + 'themes' => array(), + 'media' => array() ); /** @@ -158,6 +159,7 @@ $this->paths['lib'] = array(XOOPS_PATH, XOOPS_URL . 'browse.php'); $this->paths['modules'] = array(XOOPS_ROOT_PATH . '/modules', XOOPS_URL . '/modules'); $this->paths['themes'] = array(XOOPS_ROOT_PATH . '/themes', XOOPS_URL . '/themes'); + $this->paths['media'] = array(XOOPS_ROOT_PATH . '/media', XOOPS_URL . '/media'); $this->registry = XoopsRegistry::getInstance(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |