| 1 | 1035 | Ruebenwurz | <?php
 | 
      
        | 2 | 1400 | FrankH | /**
 | 
      
        | 3 |  |  |  *
 | 
      
        | 4 |  |  |  * @category        admin
 | 
      
        | 5 |  |  |  * @package         admintools
 | 
      
        | 6 |  |  |  * @author          WebsiteBaker Project
 | 
      
        | 7 |  |  |  * @copyright       2004-2009, Ryan Djurovich
 | 
      
        | 8 |  |  |  * @copyright       2009-2011, Website Baker Org. e.V.
 | 
      
        | 9 |  |  |  * @link			http://www.websitebaker2.org/
 | 
      
        | 10 |  |  |  * @license         http://www.gnu.org/licenses/gpl.html
 | 
      
        | 11 |  |  |  * @platform        WebsiteBaker 2.8.x
 | 
      
        | 12 |  |  |  * @requirements    PHP 5.2.2 and higher
 | 
      
        | 13 |  |  |  * @version         $Id$
 | 
      
        | 14 |  |  |  * @filesource		$HeadURL:  $
 | 
      
        | 15 |  |  |  * @lastmodified    $Date:  $
 | 
      
        | 16 |  |  |  *
 | 
      
        | 17 |  |  |  */
 | 
      
        | 18 | 1035 | Ruebenwurz | 
 | 
      
        | 19 |  |  | function __unserialize($sObject) {  // found in php manual :-)
 | 
      
        | 20 |  |  | 	$__ret =preg_replace('!s:(\d+):"(.*?)";!e', "'s:'.strlen('$2').':\"$2\";'", $sObject );
 | 
      
        | 21 |  |  | 	return unserialize($__ret);
 | 
      
        | 22 |  |  | }
 | 
      
        | 23 |  |  | $pathsettings = array();
 | 
      
        | 24 |  |  | $query = $database->query ( "SELECT * FROM ".TABLE_PREFIX."settings where `name`='mediasettings'" );
 | 
      
        | 25 |  |  | if ($query && $query->numRows() > 0) {
 | 
      
        | 26 |  |  | 	$settings = $query->fetchRow();
 | 
      
        | 27 |  |  | 	$pathsettings = __unserialize($settings['value']);
 | 
      
        | 28 |  |  | } else {
 | 
      
        | 29 |  |  | 	$database->query ( "INSERT INTO ".TABLE_PREFIX."settings (`name`,`value`) VALUES ('mediasettings','')" );
 | 
      
        | 30 |  |  | }
 |