Skip to content

Instantly share code, notes, and snippets.

View NicholasShatokhin's full-sized avatar

Nicholas Shatokhin NicholasShatokhin

  • Donets'k, Ukraine
View GitHub Profile
@natowi
natowi / audio2midi.md
Last active July 19, 2024 03:32
List of open source audio to midi packages
@kemo
kemo / fix.diff
Last active July 16, 2018 06:47
Kohana 2 ob_end_clean() hotfix (PHP 5.4+)
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';