diff options
author | Jayaram R Pai | 2014-09-18 11:36:06 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-09-18 11:36:06 +0530 |
commit | ef8ad02df7f9904600d5692c774716ec2d86defd (patch) | |
tree | 2e24058a8b7f20d569bd244ae4f9b983b7c6bc7f | |
parent | f48aa882df73a0597f5e6a905af8ab587f539635 (diff) | |
download | scilab_textbook_companion-ef8ad02df7f9904600d5692c774716ec2d86defd.tar.gz scilab_textbook_companion-ef8ad02df7f9904600d5692c774716ec2d86defd.tar.bz2 scilab_textbook_companion-ef8ad02df7f9904600d5692c774716ec2d86defd.zip |
temporarily enabling /proposal
-rwxr-xr-x | textbook_companion.module | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/textbook_companion.module b/textbook_companion.module index ca73636..d8c3e63 100755 --- a/textbook_companion.module +++ b/textbook_companion.module @@ -824,11 +824,12 @@ function textbook_companion_proposal_all() { $row1 = db_fetch_object($result); $row2 = db_fetch_object($result); $row3 = db_fetch_object($result); + $page_content .= drupal_get_form("book_proposal_form", $row1, $row2, $row3); } else { - drupal_goto("aicte_proposal"); + $page_content .= drupal_get_form("book_proposal_form"); + // drupal_goto("aicte_proposal"); } - $page_content .= drupal_get_form("book_proposal_form", $row1, $row2, $row3); return $page_content; } |