diff options
author | Jayaram Pai | 2014-04-29 04:58:16 +0530 |
---|---|---|
committer | Jayaram Pai | 2014-04-29 04:58:16 +0530 |
commit | d236b5b5285579f3bfd8505dc2e3f71ea0323d8c (patch) | |
tree | 3389e03db72e304e8ec2b110438cb97c839ee61a | |
parent | a20b80996c28dacee75769e452abd05f6053cd3a (diff) | |
download | scilab_fixer-d236b5b5285579f3bfd8505dc2e3f71ea0323d8c.tar.gz scilab_fixer-d236b5b5285579f3bfd8505dc2e3f71ea0323d8c.tar.bz2 scilab_fixer-d236b5b5285579f3bfd8505dc2e3f71ea0323d8c.zip |
added author display to select:book
-rwxr-xr-x | scilab_fixer.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scilab_fixer.module b/scilab_fixer.module index 4cfd892..ce214cf 100755 --- a/scilab_fixer.module +++ b/scilab_fixer.module @@ -110,7 +110,7 @@ $data .= "<option value='0'>Please select the book.</option>"; while($row = db_fetch_object($result)) { - $data .= "<option value='{$row->id}'>{$row->book}</option>"; + $data .= "<option value='{$row->id}'>{$row->book} ({$row->author})</option>"; } } else if($item == "book" && $key) { $query = "SELECT * FROM {textbook_companion_chapter} WHERE preference_id = %d ORDER BY number"; |