Opened 21 years ago
Closed 21 years ago
#1353 closed defect (bug) (fixed)
Call to undefined function: get_bloginfo()
| Reported by: | ryan | Owned by: | matt |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Administration | Version: | 1.5.1 |
| Severity: | minor | Keywords: | |
| Cc: | Focuses: |
Description
<a href="http://trac.wordpress.org/changeset/2548">Changeset 2548</a> introduced calls to get_bloginfo() inside wpdb's bail() method. get_bloginfo() is not yet included at the time bail() runs resulting in the undefined function error. The calls to get_bloginfo() should probably be removed.
Attachments (1)
Change History (5)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Patch takes the easy way out and just says "take this text/html and utf-8 and don't give me no lip!"
text/html and utf-8 are hardcoded into the http-equiv <meta /> anyway...
header( 'Content-Type: text/html; charset=utf-8');
vs.
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />