Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2. ini_set('max_execution_time', 0);
  3. $nodes = node_load_multiple(array(), array('type' => 'article'));
  4.  
  5. foreach ($nodes as $node){
  6. $currnode = node_load($node->nid);
  7. $body_html = ($currnode->body['und'][0]['value']);
  8. $body_html = str_replace('/sites/mysite/','/sites/default/',$body_html);
  9. $currnode->body['und'][0]['value'] = $body_html;
  10. node_save($currnode);
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement