This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright (c) 2012 Bryce Adelstein-Lelbach | |
| // | |
| // Distributed under the Boost Software License, Version 1.0. (See accompanying | |
| // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | |
| // hpx::util::container_device can be found here: | |
| // http://raw.github.com/STEllAR-GROUP/hpx/master/hpx/util/container_device.hpp | |
| // The portable binary archives used can be found here: | |
| // http://raw.github.com/STEllAR-GROUP/hpx/master/hpx/util/portable_binary_oarchive.hpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # A quickndirty bash-utility to generate REST-documentation from sourcecode comments. | |
| # (initially aimed at php-files, but js should also work) | |
| # Basically its a c-style comment -> markdown -> html converter | |
| # Dependancies: | |
| # - awk | |
| # - sed | |
| # - bash | |
| # - php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/system/core/Kohana.php b/system/core/Kohana.php | |
| index 271f917..287c271 100644 | |
| --- a/system/core/Kohana.php | |
| +++ b/system/core/Kohana.php | |
| @@ -722,7 +722,7 @@ final class Kohana { | |
| if (ob_get_level() >= self::$buffer_level) | |
| { | |
| // Set the close function | |
| - $close = ($flush === TRUE) ? 'ob_end_flush' : 'ob_end_clean'; | |
| + $close = ($flush === TRUE) ? 'ob_end_flush' : 'Kohana::_ob_end_clean'; |
NewerOlder