ExpressionEngine

2.11.9 User Guide

Retired Documentation

You are using the documentation for version 2.11.9. Go here for the latest version or check here for your available upgrades to the latest version.

Preferences Array Update

The way site pages are stored changed in this release to provide greater flexibility. If you use Pages and have any add-ons that might make use of this array, be certain to update the add- ons as part of this version update. Not doing so may result in broken pages. Add-ons that may be affected include Structure, LG Better Meta, and the Nested Menu Plugin.

For those using PHP in templates or using their own add-ons, you may need to adjust your code to reflect changes to site_pages array. The array is now saved with an additional dimension, adding a reference to the site_id. In addition, another element has been added to the array, containing the url for the particular site.

print_r($PREFS->ini("site_pages"));

In 1.6.9:

Array
(
   [1] => Array
       (
           [uris] => Array
               (
                   [12] => /page.html
               )

           [templates] => Array
               (
                   [12] => 2
               )

           [url] => http://127.0.0.1:8888/20/index.php/
       )

)

Prior to 1.6.9:

Array
(
      [uris] => Array
          (
              [12] => /page.html
          )

      [templates] => Array
          (
              [12] => 2
          )
)

Profile Theme Updates

ExpressionEngine 1.6.9 includes a number of new localization variables available for use in the member profile templates. If you have made no customizations, you may skip this step and replace the profile theme folder with a fresh copy.

The following words/phrases may now be replaced with localization variables in your profile_themes.php file (found in themes/profile_themes/default/ and any custom profile theme folders you have installed:

Powered by ExpressionEngine
{lang:powered_by_ee}
No Photo
{lang:no_photo}
Email Console
{lang:email_console}
Send Private Message
{lang:send_pm}
AOL IM
{lang:mbr_aim_console}
ICQ
{lang:mbr_icq}
Yahoo Messenger
{lang:mbr_yahoo}
{current_page} of {total_pages}
{current_page} {lang:of} {total_pages}
Search Field
{lang:search_field}
Screen Name
{lang:mbr_screen_name}
Email Address
{lang:mbr_email_address}
URL
{lang:mbr_url}
Location
{lang:mbr_location}
I am Online
{lang:am_online}
Add me to your Buddy List
{lang:add_to_buddy}
KB
{lang:kb}
Private Message
{lang:private_message}
value=’Search’
value=’{lang:search}’
value=’Submit’
value=’{lang:submit}’