Added support for multily selection in combo_input lists.
[fa-stable.git] / includes / db / references_db.inc
index a41597f9701d1e69e8abaadeb9d1594b1798040e..16d599e0cc8fce132c28f7dd2f447edce9845e96 100644 (file)
@@ -1,12 +1,23 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 //--------------------------------------------------------------------------------------------------
 
 function get_reference($type, $id)
 {
        $sql = "SELECT * FROM ".TB_PREF."refs WHERE type=$type AND id=$id";
 
-       return db_query($sql, "could not query reference table");
+       $result = db_query($sql, "could not query reference table");
+    $row = db_fetch($result);
+    return $row['reference'];
 }
 
 //--------------------------------------------------------------------------------------------------