summaryrefslogtreecommitdiff
path: root/inc/io.php
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2013-02-18 01:08:40 +0000
committerAnika Henke <anika@selfthinker.org>2013-02-18 01:08:40 +0000
commitc33b315b06b3a52a61cb1ecc2b3beadd4ecd0311 (patch)
tree3852a81d98ff6795c53a454d266ae9def63f11e2 /inc/io.php
parenteda319e6664ad3c786312ffee7ce7cfbfa4eda1c (diff)
downloadrpg-c33b315b06b3a52a61cb1ecc2b3beadd4ecd0311.tar.gz
rpg-c33b315b06b3a52a61cb1ecc2b3beadd4ecd0311.tar.bz2
removed a bunch of functions which were deprecated in 2005/2006
Diffstat (limited to 'inc/io.php')
-rw-r--r--inc/io.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/inc/io.php b/inc/io.php
index 5ecc79703..4bd7c3364 100644
--- a/inc/io.php
+++ b/inc/io.php
@@ -529,25 +529,6 @@ function io_rename($from,$to){
return true;
}
-
-/**
- * Runs an external command and returns its output as string
- *
- * @author Harry Brueckner <harry_b@eml.cc>
- * @author Andreas Gohr <andi@splitbrain.org>
- * @deprecated
- */
-function io_runcmd($cmd){
- $fh = popen($cmd, "r");
- if(!$fh) return false;
- $ret = '';
- while (!feof($fh)) {
- $ret .= fread($fh, 8192);
- }
- pclose($fh);
- return $ret;
-}
-
/**
* Runs an external command with input and output pipes.
* Returns the exit code from the process.