X-Git-Url: http://andersk.mit.edu/gitweb/sql-web.git/blobdiff_plain/9835a21d68b12f5883c9508695ed8e404a1c671b..ca43eea9776f35a5c09331524c60b71d120fb203:/lib/joe/joe.lib.php diff --git a/lib/joe/joe.lib.php b/lib/joe/joe.lib.php index 0bf1fb0..dffb0df 100644 --- a/lib/joe/joe.lib.php +++ b/lib/joe/joe.lib.php @@ -2,12 +2,6 @@ /* (c) 2005 Joe Presbrey joepresbrey@gmail.com - - ATTN: This library was assembled and completed in its entirety independent of - any and all corporate projects and/or work environ. - - You may NOT use this library elsewhere! - */ function isPost() { @@ -80,7 +74,6 @@ function sessTime($query=null) { } function fetchRows($rs, $key = null) { - /* ask me how to use this if its not obvious ~ Joe */ if (!$rs) return array(); $kn = is_null($key); $n = mysql_num_rows($rs); @@ -180,11 +173,6 @@ function build_str($query_array) { } function newQS($key, $val=null) { - /* - parse_str($_SERVER['QUERY_STRING'], $arr); - $arr[$key] = $val; - return '?'.build_str($arr); - */ return newQSA(array($key=>$val)); }