Changeset 2472

Show
Ignore:
Timestamp:
05/09/08 16:52:53 (7 months ago)
Author:
david
Message:

merge [2462:2471/branches/0.11]

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/CHANGELOG

    r2463 r2472  
    1414 
    1515FIX: Security filters cannot perform checks in addition to isSecure() (#671) (David) 
     16 
     17 
     180.11.1 (May 9, 2008) 
     19-------------------- 
     20 
     21FIX: UTF-8 Special characters in exception messages get garbled in exception output (Tanaka Koichi, David) (#758) 
    1622 
    1723 
  • trunk/RELEASE_NOTES

    r2394 r2472  
    2727 
    2828 
    29 Version 0.11.1 - March ??, 2008 
    30 =============================== 
     29Version 0.11.1 - May 9, 2008 
     30============================ 
    3131 
    3232This is a bugfix release. The most important changes are: 
     
    3939 
    4040- Several fixes were done to the database session storage. Of note, no implementation forces a garbage collection run anymore before opening a session. An issue with date formats in queries has been fixed, too, for all implementations, and storages will not create a blank session entry anymore if the requested session ID was not found during a read operation. 
     41 
     42- The Execution Container creation methods in AgaviView now use null as the default values for the optional arguments array/object, and createForwardContainer() will now forward arguments from the current Container if no arguments are given in the call. 
     43 
     44- AgaviExecutionFilter::writeCache() now is passed the lifetime as the third argument. 
    4145 
    4246For a complete list of changes in this release, please refer to the CHANGELOG file. 
  • trunk/src/exception/templates/shiny.php

    r2430 r2472  
    556556<?php endif; ?> 
    557557    <p>An exception of type <strong><?php echo get_class($e); ?></strong> was thrown, but did not get caught during the execution of the request. You will find information provided by the exception along with a stack trace below.</p> 
    558 <?php $msg = nl2br(htmlentities($e->getMessage())); ?> 
     558<?php $msg = nl2br(htmlspecialchars($e->getMessage())); ?> 
    559559<?php if($msg != ''): ?> 
    560560    <p id="message"<?php if($svg): ?> class="nice"<?php endif; ?>>