diff options
Diffstat (limited to 'scilab_fixer.module')
-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"; |