Ejemplo n.º 1
0
 /**
  * Update a single record in mapping table
  */
 function updateSingleURI($node_data)
 {
     require_once 'models/common/common_uri_mapping.php';
     $Mapper = new common_uri_mapping();
     if ($Mapper->updateSingle($node_data)) {
         return true;
     } else {
         return false;
     }
 }