Make WordPress Core


Ignore:
Timestamp:
10/19/2004 03:03:06 AM (20 years ago)
Author:
rboren
Message:

Split admin-header.php into admin.php and admin-header.php. Split menu.php into menu-header.php and menu.php. Add plugin admin page support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/theme-editor.php

    r1703 r1818  
    11<?php
    2 require_once('../wp-includes/wp-l10n.php');
     2require_once('admin.php');
    33
    44$title = __("Template &amp; file editing");
    55$parent_file = 'themes.php';
    6 
    7 function add_magic_quotes($array) {
    8     foreach ($array as $k => $v) {
    9         if (is_array($v)) {
    10             $array[$k] = add_magic_quotes($v);
    11         } else {
    12             $array[$k] = addslashes($v);
    13         }
    14     }
    15     return $array;
    16 }
    176
    187function validate_file($file) {
     
    3221}
    3322
    34 if (!get_magic_quotes_gpc()) {
    35     $_GET    = add_magic_quotes($_GET);
    36     $_POST   = add_magic_quotes($_POST);
    37     $_COOKIE = add_magic_quotes($_COOKIE);
    38 }
    39 
    40 $wpvarstoreset = array('action','standalone','redirect','profile','error','warning','a','file', 'theme');
     23$wpvarstoreset = array('action','redirect','profile','error','warning','a','file', 'theme');
    4124for ($i=0; $i<count($wpvarstoreset); $i += 1) {
    4225    $wpvar = $wpvarstoreset[$i];
     
    5740
    5841case 'update':
    59 
    60     $standalone = 1;
    61     require_once("admin-header.php");
    6242
    6343    if ($user_level < 5) {
Note: See TracChangeset for help on using the changeset viewer.