Security update for Core, with self-updated composer
[yaffs-website] / vendor / gabordemooij / redbean / p533patch.php
diff --git a/vendor/gabordemooij/redbean/p533patch.php b/vendor/gabordemooij/redbean/p533patch.php
deleted file mode 100644 (file)
index 9fe96cd..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-
-echo "Running Patch P533...";
-echo PHP_EOL;
-
-$code = file_get_contents('rb.php');
-$code = str_replace('&offsetGet', 'offsetGet', $code);
-
-$bytes = file_put_contents('rb-p533.php', $code);
-
-if ($bytes > 0) {
-       echo 'Applied patch for PHP < 5.3.3';
-       echo PHP_EOL;
-       exit;
-} else {
-       echo 'Somthing went wrong.';
-       echo PHP_EOL;
-       exit;
-}