Changeset 11109 for trunk/wp-app.php
- Timestamp:
- 04/28/2009 05:58:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-app.php
r11108 r11109 353 353 $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) ); 354 354 355 $entries_url = attr ibute_escape($this->get_entries_url());356 $categories_url = attr ibute_escape($this->get_categories_url());357 $media_url = attr ibute_escape($this->get_attachments_url());355 $entries_url = attr($this->get_entries_url()); 356 $categories_url = attr($this->get_categories_url()); 357 $media_url = attr($this->get_attachments_url()); 358 358 foreach ($this->media_content_types as $med) { 359 359 $accepted_media_types = $accepted_media_types . "<accept>" . $med . "</accept>"; … … 393 393 $this->auth_required( __( 'Sorry, you do not have the right to access this blog.' ) ); 394 394 395 $home = attr ibute_escape(get_bloginfo_rss('home'));395 $home = attr(get_bloginfo_rss('home')); 396 396 397 397 $categories = ""; 398 398 $cats = get_categories("hierarchical=0&hide_empty=0"); 399 399 foreach ((array) $cats as $cat) { 400 $categories .= " <category term=\"" . attr ibute_escape($cat->name) . "\" />\n";400 $categories .= " <category term=\"" . attr($cat->name) . "\" />\n"; 401 401 } 402 402 $output = <<<EOD … … 1333 1333 1334 1334 log_app('Status','302: Redirect'); 1335 $escaped_url = attr ibute_escape($url);1335 $escaped_url = attr($url); 1336 1336 $content = <<<EOD 1337 1337 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
Note: See TracChangeset
for help on using the changeset viewer.