Closed (fixed)
Project:
Views Bulk Operations (VBO)
Version:
6.x-1.7
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
11 Jul 2009 at 19:30 UTC
Updated:
26 Jul 2009 at 19:50 UTC
Note: while #358617: How to bulk edit cck fields? appears similar, it has evolved into something much different than this simple case of editing bulk CCK fields.
Steps to reproduce:
return array(
0 => array('value' => $field_X[0]['view']),
);(Field X is also a text field and has text in it.)
When taken back to the view, I get this at the top:
3 rows processed in about 465 ms:
* Performed Modify node fields on node A.
* Performed Modify node fields on node B.
* Performed Modify node fields on node C.
But when inspecting the nodes, field Y remains blank.
Comments
Comment #1
aren cambre commentedMake title more focused to separate it from #358617: How to bulk edit cck fields?, which is more about inserting a static value into a field.
Comment #2
infojunkieThanks for your report, I'll take a look at it.
Comment #3
infojunkieIn step 3 of your description, your code is incorrect. Instead of
you should write
The variable
$nodeis available to you, and to know how to refer to the right value in a field, please use devel.module's dev load tab.Comment #4
aren cambre commentedThank you.