summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2014-02-20 12:02:06 +0100
committerAndreas Gohr <andi@splitbrain.org>2014-02-20 12:02:06 +0100
commit5655334d1680f04fb30731767b2a8aac9eaabe6d (patch)
tree6e28a40aa1b7390eb9ed80a618f880e198f8a16d
parentb63529ad89f66ca4de0b4b6003892ac7fd71653c (diff)
parent901248028bc3b7497093ab3853f2f6e347fbc397 (diff)
downloadrpg-5655334d1680f04fb30731767b2a8aac9eaabe6d.tar.gz
rpg-5655334d1680f04fb30731767b2a8aac9eaabe6d.tar.bz2
Merge pull request #558 from splitbrain/httputils
fix httputils PHPDocs
-rw-r--r--inc/httputils.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/inc/httputils.php b/inc/httputils.php
index ca60ed509..003733ede 100644
--- a/inc/httputils.php
+++ b/inc/httputils.php
@@ -64,7 +64,8 @@ function http_conditionalRequest($timestamp){
* Let the webserver send the given file via x-sendfile method
*
* @author Chris Smith <chris@jalakai.co.uk>
- * @returns void or exits with previously header() commands executed
+ * @param $file
+ * @returns bool or exits with previously header() commands executed
*/
function http_sendfile($file) {
global $conf;
@@ -92,7 +93,7 @@ function http_sendfile($file) {
*
* This function exits the running script
*
- * @param ressource $fh - file handle for an already open file
+ * @param resource $fh - file handle for an already open file
* @param int $size - size of the whole file
* @param int $mime - MIME type of the file
*
@@ -204,7 +205,7 @@ function http_gzip_valid($uncompressed_file) {
*
* This function handles output of cacheable resource files. It ses the needed
* HTTP headers. If a useable cache is present, it is passed to the web server
- * and the scrpt is terminated.
+ * and the script is terminated.
*/
function http_cached($cache, $cache_ok) {
global $conf;