mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 20:00:37 +02:00
Missing parameter
This commit is contained in:
@@ -11,9 +11,9 @@
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_handlers/user_extended_class.php,v $
|
||||
| $Revision: 1.4 $
|
||||
| $Date: 2007-03-04 13:53:37 $
|
||||
| $Author: mrpete $
|
||||
| $Revision: 1.5 $
|
||||
| $Date: 2007-04-14 16:50:50 $
|
||||
| $Author: e107steved $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
@@ -109,6 +109,8 @@ class e107_user_extended
|
||||
return $ret;
|
||||
}
|
||||
|
||||
|
||||
// Get the definition of all fields, or those in a specific category, grouped by category ID
|
||||
function user_extended_get_fields($cat = "")
|
||||
{
|
||||
global $sql;
|
||||
@@ -123,7 +125,8 @@ class e107_user_extended
|
||||
return $ret;
|
||||
}
|
||||
|
||||
function user_extended_get_fieldList()
|
||||
// Get the definition of all fields, or those in a specific category, indexed by field ID
|
||||
function user_extended_get_fieldList($cat = "")
|
||||
{
|
||||
global $sql;
|
||||
$more = ($cat) ? " AND user_extended_struct_parent = ".intval($cat)." " : "";
|
||||
|
Reference in New Issue
Block a user