From ccbbbd3fcb2034b66ea49d348d12e10fd98d5bbc Mon Sep 17 00:00:00 2001
From: Jayaram Pai
Date: Wed, 2 Apr 2014 16:31:54 +0530
Subject: removed space before ? from comment form
---
tbc_external_review.module | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
(limited to 'tbc_external_review.module')
diff --git a/tbc_external_review.module b/tbc_external_review.module
index 35c4d67..5e64128 100755
--- a/tbc_external_review.module
+++ b/tbc_external_review.module
@@ -632,7 +632,7 @@
);
$form["wrapper"]["error"]["axl"] = array(
"#type" => "radios",
- "#title" => t("Axes labeled ?"),
+ "#title" => t("Axes labeled?"),
"#options" => array(
t("Yes"),
t("No"),
@@ -664,7 +664,7 @@
);
$form["wrapper"]["error"]["aci"] = array(
"#type" => "radios",
- "#title" => t("Appropriate comments included as mentioned in checklist point 7 ?"),
+ "#title" => t("Appropriate comments included as mentioned in checklist point 7?"),
"#options" => array(
t("Yes"),
t("No"),
@@ -696,7 +696,7 @@
);
$form["wrapper"]["error"]["comment"] = array(
"#type" => "textarea",
- "#title" => t("Other commment ? (if any)"),
+ "#title" => t("Other commment? (if any)"),
);
$form["wrapper"]["submit"] = array(
"#type" => "submit",
@@ -776,15 +776,15 @@
$data .= "
Naming convention followed? | " . _bool($row->ncf) . " |
";
$data .= "Error in textbook mentioned as comment? | " . _bool($row->eit) . " |
";
$data .= "Problem statement included in code? | " . _bool($row->psi) . " |
";
- $data .= "Axes labeled ? | " . _bool($row->axl) . " |
";
+ $data .= "Axes labeled? | " . _bool($row->axl) . " |
";
$data .= "Symbols used are appropiate? | " . _bool($row->sua) . " |
";
$data .= "Scilab functions used? | " . _bool($row->sfu) . " |
";
$data .= "Solved using Matlab in textbook? | " . _bool($row->sum) . " |
";
- $data .= "Appropriate comments included as mentioned in checklist point 7 ? | " . _bool($row->aci) . " |
";
+ $data .= "Appropriate comments included as mentioned in checklist point 7? | " . _bool($row->aci) . " |
";
$data .= "Appropriate units used as given in the textbook? | " . _bool($row->auu) . " |
";
$data .= "Typographical errors in output and/or comments? | " . _bool($row->teo) . " |
";
$data .= "Answers matching with the textbook? | " . _bool($row->amt) . " |
";
- $data .= "Any Other Comment ? | " . $row->comment . " |
";
+ $data .= "Any Other Comment? | " . $row->comment . " |
";
$data .= "";
$data .= "";
@@ -1295,7 +1295,7 @@
";
$result = db_query($query, $preference_id);
$row = db_fetch_object($result);
- $page_content .= "Do you want to continue adding the book ?
";
+ $page_content .= "Do you want to continue adding the book?
";
$page_content .= "Book: {$row->book}
";
$page_content .= "Author: {$row->author}
";
$page_content .= l("Yes", "tbc_external_review/add_book/{$row->id}/confirm") . " | ";
@@ -1439,7 +1439,7 @@
$result = db_query($query, $preference_id);
$row = db_fetch_object($result);
- $page_content .= "Are you sure you want to mark the book completed ?
";
+ $page_content .= "Are you sure you want to mark the book completed?
";
$page_content .= "Book: {$row->book}
";
$page_content .= "Author: {$row->author}
";
$page_content .= drupal_get_form("tbc_external_review_completion_form", $preference_id);
--
cgit