The branch, master has been updated via 0c979971a28c05e3fece7fb21ff2937e92c6d5e9 (commit) from 829b3c73c1246a4730cc806fff74936cc72f3dcc (commit)
- Log ----------------------------------------------------------------- commit 0c979971a28c05e3fece7fb21ff2937e92c6d5e9 Author: Marc Delisle marc@infomarc.info Date: Wed Dec 29 08:54:59 2010 -0500
split() is deprecated
-----------------------------------------------------------------------
Summary of changes: enum_editor.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/enum_editor.php b/enum_editor.php index 4a24c5b..088275f 100644 --- a/enum_editor.php +++ b/enum_editor.php @@ -24,7 +24,7 @@ require_once './libraries/header_meta_style.inc.php'; <?php $values = array(); if (isset($_GET['values'])) { // This page was displayed when the "add a new value" link or the link in tbl_alter.php was clicked - $values = split(',', urldecode($_GET['values'])); + $values = explode(',', urldecode($_GET['values'])); } elseif (isset($_GET['num_fields'])) { // This page was displayed from submitting this form for($field_num = 1; $field_num <= $_GET['num_fields']; $field_num++) { $values[] = "'" . str_replace(array("'", '\'), array("''", '\\'), $_GET['field' . $field_num]) . "'";
hooks/post-receive