Changeset 2472
- Timestamp:
- 05/09/08 16:52:53 (7 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
CHANGELOG (modified) (1 diff)
-
RELEASE_NOTES (modified) (2 diffs)
-
src/exception/templates/shiny.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r2463 r2472 14 14 15 15 FIX: Security filters cannot perform checks in addition to isSecure() (#671) (David) 16 17 18 0.11.1 (May 9, 2008) 19 -------------------- 20 21 FIX: UTF-8 Special characters in exception messages get garbled in exception output (Tanaka Koichi, David) (#758) 16 22 17 23 -
trunk/RELEASE_NOTES
r2394 r2472 27 27 28 28 29 Version 0.11.1 - Ma rch ??, 200830 ============================ ===29 Version 0.11.1 - May 9, 2008 30 ============================ 31 31 32 32 This is a bugfix release. The most important changes are: … … 39 39 40 40 - 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. 41 45 42 46 For a complete list of changes in this release, please refer to the CHANGELOG file. -
trunk/src/exception/templates/shiny.php
r2430 r2472 556 556 <?php endif; ?> 557 557 <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(html entities($e->getMessage())); ?>558 <?php $msg = nl2br(htmlspecialchars($e->getMessage())); ?> 559 559 <?php if($msg != ''): ?> 560 560 <p id="message"<?php if($svg): ?> class="nice"<?php endif; ?>>

