Make WordPress Core


Ignore:
Timestamp:
03/01/2004 06:13:32 AM (21 years ago)
Author:
saxmatt
Message:

Migration to get_settings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-comments-popup.php

    r945 r956  
    99<html xmlns="http://www.w3.org/1999/xhtml">
    1010<head>
    11     <title><?php echo $blogname ?> - Comments on "<?php the_title() ?>"</title>
     11    <title><?php echo get_settings('blogname'); ?> - Comments on "<?php the_title() ?>"</title>
    1212
    13     <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $blog_charset; ?>" />
     13    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo get_settings('blog_charset'); ?>" />
    1414    <style type="text/css" media="screen">
    1515        @import url( wp-layout.css );
     
    2020<body id="commentspopup">
    2121
    22 <h1 id="header"><a href="" title="<?php echo $blogname ?>"><?php echo $blogname ?></a></h1>
     22<h1 id="header"><a href="" title="<?php echo get_settings('blogname'); ?>"><?php echo get_settings('blogname'); ?></a></h1>
    2323
    2424<h2 id="comments">Comments</h2>
Note: See TracChangeset for help on using the changeset viewer.