Skip to content

Commit

Permalink
Removed dumping of conditions (not really needed now was it!)
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@421 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Jun 30, 2003
1 parent 0b4638e commit b55f486
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions admin/dumpquestion.php
Expand Up @@ -92,10 +92,6 @@ function BuildOutput($Query)
$aquery = "SELECT answers.* FROM answers, questions WHERE answers.qid=questions.qid AND questions.qid=$qid";
$adump = BuildOutput($aquery);

//3: Conditions table
$cquery = "SELECT conditions.* FROM conditions, questions WHERE conditions.qid=questions.qid AND questions.qid=$qid";
$cdump = BuildOutput($cquery);

$fn = "question_$qid.sql";

//header("Content-Type: application/msword"); //EXPORT INTO MSWORD
Expand All @@ -106,7 +102,7 @@ function BuildOutput($Query)
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache"); // HTTP/1.0
echo "#<pre>\n";
echo $dumphead, $qdump, $adump, $cdump;
echo $dumphead, $qdump, $adump;
echo "#</pre>\n";

?>

0 comments on commit b55f486

Please sign in to comment.