Vergleich inc/datahandlers/user.php - 1.6.13 - 1.6.14

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 485Zeile 485
		$options = array(
'order_by' => 'disporder'
);

		$options = array(
'order_by' => 'disporder'
);

		$query = $db->simple_select('profilefields', 'name, type, fid, required, maxlength', $editable, $options);

		$query = $db->simple_select('profilefields', 'name, postnum, type, fid, required, maxlength', $editable, $options);


// Then loop through the profile fields.
while($profilefield = $db->fetch_array($query))
{


// Then loop through the profile fields.
while($profilefield = $db->fetch_array($query))
{

 
			// Does this field have a minimum post count?
if(!$this->data['profile_fields_editable'] && !empty($profilefield['postnum']) && $profilefield['postnum'] > $user['postnum'])
{
continue;
}


			$profilefield['type'] = htmlspecialchars_uni($profilefield['type']);
$thing = explode("\n", $profilefield['type'], "2");
$type = trim($thing[0]);

			$profilefield['type'] = htmlspecialchars_uni($profilefield['type']);
$thing = explode("\n", $profilefield['type'], "2");
$type = trim($thing[0]);

Zeile 602Zeile 608
		// Verify yes/no options.
$this->verify_yesno_option($options, 'allownotices', 1);
$this->verify_yesno_option($options, 'hideemail', 0);

		// Verify yes/no options.
$this->verify_yesno_option($options, 'allownotices', 1);
$this->verify_yesno_option($options, 'hideemail', 0);

		$this->verify_yesno_option($options, 'emailpmnotify', 0);

 
		$this->verify_yesno_option($options, 'receivepms', 1);
$this->verify_yesno_option($options, 'receivefrombuddy', 0);
$this->verify_yesno_option($options, 'pmnotice', 1);

		$this->verify_yesno_option($options, 'receivepms', 1);
$this->verify_yesno_option($options, 'receivefrombuddy', 0);
$this->verify_yesno_option($options, 'pmnotice', 1);

Zeile 1017Zeile 1022
			"receivepms" => $user['options']['receivepms'],
"receivefrombuddy" => $user['options']['receivefrombuddy'],
"pmnotice" => $user['options']['pmnotice'],

			"receivepms" => $user['options']['receivepms'],
"receivefrombuddy" => $user['options']['receivefrombuddy'],
"pmnotice" => $user['options']['pmnotice'],

			"pmnotify" => $user['options']['emailpmnotify'],

			"pmnotify" => $user['options']['pmnotify'],

			"showsigs" => $user['options']['showsigs'],
"showavatars" => $user['options']['showavatars'],
"showquickreply" => $user['options']['showquickreply'],

			"showsigs" => $user['options']['showsigs'],
"showavatars" => $user['options']['showavatars'],
"showquickreply" => $user['options']['showquickreply'],