|
|
Reported by WeGods and Pat. Function was receiving an list of arguments
instead of the single indexed array. Patched in R136.
Index: siteadmin/section-edit.php
===================================================================
--- siteadmin/section-edit.php (revision 135)
+++ siteadmin/section-edit.php (revision 136)
@@ -61,7 +61,7 @@
$section['priority'] = $_POST['priority'];
$section['feed_image'] = $_POST['feed_image'];
- $stat =
cm_add_section($name,$editor,$editor_title,$editor_email,$url,$sidebar,$feed_image,$priority);
+ $stat = cm_add_section($section);
if ($stat) {
header("Location: $pmodule.php?msg=added");
|