Commit 407d1ffa16c6e4b94a3a46599f0c3c822cc1583b

Authored by Adhidarma Hadiwinoto
1 parent c1c8ffb277
Exists in master

unset rdf_mapping

Showing 2 changed files with 3 additions and 2 deletions Side-by-side Diff

sinkronisasi.include.php
... ... @@ -20,7 +20,8 @@ function sinkronisasi_get_terms($vocabulary) {
20 20 function sinkronisasi_export_iterate($terms) {
21 21 foreach ($terms as $tid => $term) {
22 22 $terms[$tid] = sinkronisasi_taxonomy_term_denormalization($term);
23   - var_dump($terms); die;
  23 +
  24 + unset($terms[$tid]->rdf_mapping);
24 25 }
25 26 return $terms;
26 27 }
sinkronisasi_export.php
... ... @@ -4,5 +4,5 @@ require("sinkronisasi.include.php");
4 4  
5 5 if (function_exists('drush_main')) {
6 6 sinkronisasi_export_serialized("kantor");
7   - #sinkronisasi_import_from_serialized_file("adhisimon/kantor/kantor.txt");
  7 +
8 8 }