It seems that codes are not compatible, as you can see in book module :
function book_submit(&$node) {
global $user;
// Set default values for non-administrators.
if (!user_access('administer nodes')) {
$node->weight = 0;
$node->revision = 1;
$book->uid = $user->uid;
$book->name = $user->uid ? $user->name : '';
}
} is not compatible with the submission/validation hook as defined in 'weights'.
Comments
Comment #1
merlinofchaos commentedWhat are you talking about?
Comment #2
dlr commentedSory, talking about the "weights" module.
Regards David
Comment #3
merlinofchaos commentedReassigning to weight project then, I guess.
Comment #4
dlr commentedOups, sorry again...
Comment #5
harry slaughterlooks like there's a problem on the edit page for book nodes. the 'node weight' and 'page weight' properties are sharing the 'weight' form name.
will give the weight module its own namespace 'node_weight' to prevent this sort of conflict.
also going to expand help text to make it clearer what the purpose of weight.module is.
Comment #6
harry slaughterfixed in CVS. will go out with next tag
Comment #7
(not verified) commented