Index: openads.module
===================================================================
--- openads.module	(revision 2459)
+++ openads.module	(working copy)
@@ -246,7 +246,13 @@
       if ($vid) {
         foreach($node->taxonomy as $term) {
           if ($term->vid == $vid) {
-            $source = $term->name;
+            
+            //load source value from extra table
+            $source = NULL;
+            if ($term->tid) {
+              $source = db_result(db_query("SELECT ts.source FROM {openads_term_source} ts WHERE tid = %d", $term->tid));
+            }
+            
             break;
           }
         }
