WordPress 2.6.1 (Release branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News WordPress 2.6.1 (Release branch)
# 1  
Old 08-15-2008
WordPress 2.6.1 (Release branch)

ImageWordPress is a state-of-the-art, semantic, personal publishing platform with a focus on aesthetics, Web standards, and usability. It was born out of a desire for an elegant, well-architected personal publishing system. While primarily geared towards functioning as a Weblog, WordPress is also a flexible CMS capable of managing many types of Web sites. In addition to the basic blog functions, it also has an integrated link manager (e.g. for blogrolls), file attachments, XFN support, support for stand-alone pages, Atom and RSS feeds for both content and comments, blogging API support (Atom Publishing Protocol, Blogger, MetaWeblog, and Movable Type APIs), spam blocking features, advanced cruft-free URL generation, a flexible theme system, and an advanced plugin API.License: GNU General Public License (GPL)Changes:
This update fixes several minor bugs from 2.6. Changes include improved RTL (right-to-left) language support in the admin interface; permalink fixes for IIS users; a fix for an image insertion problem in the "Press This" bookmarklet; improved performance in the admin sections for blogs with many plugins installed; and many other fixes.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
IMAP_HEADERINFO(3)							 1							IMAP_HEADERINFO(3)

imap_headerinfo - Read the header of the message

SYNOPSIS
object imap_headerinfo NULL (resource $imap_stream, int $msg_number, [int $fromlength], [int $subjectlength], [string $defaulthost]) DESCRIPTION
Gets information about the given message number by reading its headers. PARAMETERS
o $ imap_stream -An IMAP stream returned by imap_open(3). o $msg_number - The message number o $fromlength - Number of characters for the fetchfrom property. Must be greater than or equal to zero. o $subjectlength - Number of characters for the fetchsubject property Must be greater than or equal to zero. o $defaulthost - RETURN VALUES
Returns the information in an object with following properties: o toaddress - full to: line, up to 1024 characters o to - an array of objects from the To: line, with the following properties: personal, adl, mailbox, and host o fromaddress - full from: line, up to 1024 characters o from - an array of objects from the From: line, with the following properties: personal, adl, mailbox, and host o ccaddress - full cc: line, up to 1024 characters o cc - an array of objects from the Cc: line, with the following properties: personal, adl, mailbox, and host o bccaddress - full bcc: line, up to 1024 characters o bcc - an array of objects from the Bcc: line, with the following properties: personal, adl, mailbox, and host o reply_toaddress - full Reply-To: line, up to 1024 characters o reply_to - an array of objects from the Reply-To: line, with the following properties: personal, adl, mailbox, and host o senderaddress - full sender: line, up to 1024 characters o sender - an array of objects from the Sender: line, with the following properties: personal, adl, mailbox, and host o return_pathaddress - full Return-Path: line, up to 1024 characters o return_path - an array of objects from the Return-Path: line, with the following properties: personal, adl, mailbox, and host o remail - o date - The message date as found in its headers o Date - Same as date o subject - The message subject o Subject - Same as subject o in_reply_to - o message_id - o newsgroups - o followup_to - o references - o Recent - R if recent and seen, N if recent and not seen, ' ' if not recent. o Unseen - U if not seen AND not recent, ' ' if seen OR not seen and recent o Flagged - F if flagged, ' ' if not flagged o Answered - A if answered, ' ' if unanswered o Deleted - D if deleted, ' ' if not deleted o Draft - X if draft, ' ' if not draft o Msgno - The message number o MailDate - o Size - The message size o udate - mail message date in Unix time o fetchfrom - from line formatted to fit $fromlength characters o fetchsubject - subject line formatted to fit $subjectlength characters SEE ALSO
imap_fetch_overview(3). PHP Documentation Group IMAP_HEADERINFO(3)