I found that here is a little mistake at line 76 in the mp_file.module
Should be: mp_file_node_update($node);
Instead of shown below in line 76.
+72 /**
+73 * Implements hook_node_insert().
+74 */
+75 function mp_file_node_insert($node) {
-76 mp_file_node_upate($node);
+77 }
Please note that this was causing an error of creating new content, including basic articles. Once fixing the typo from "upate" to "update" as Salif noted, everything was working again.
Comments
Comment #1
Salif commentedI found that here is a little mistake at line 76 in the mp_file.module
Should be: mp_file_node_update($node);
Instead of shown below in line 76.
+72 /**
+73 * Implements hook_node_insert().
+74 */
+75 function mp_file_node_insert($node) {
-76 mp_file_node_upate($node);
+77 }
Comment #2
vinnyt commentedPlease note that this was causing an error of creating new content, including basic articles. Once fixing the typo from "upate" to "update" as Salif noted, everything was working again.
Comment #3
kartagisComment #4
drummondf commentedThis fixes a serious issue with content creation, voting for this to be pushed to dev
Comment #6
wodenx commentedhttp://cgit.drupalcode.org/ubercart_marketplace/commit/?id=f9ab03e
Thanks, all.