Trimming the accept header parts for better content type comparison.

e.g., ' text/xml' != 'text/xml'
This commit is contained in:
Sarven Capadisli 2009-04-10 17:40:45 +00:00
parent c9c5ec0e4b
commit 3b9f235e42
1 changed files with 2 additions and 2 deletions

View File

@ -1152,7 +1152,7 @@ function common_accept_to_prefs($accept, $def = '*/*')
foreach($parts as $part) {
// FIXME: doesn't deal with params like 'text/html; level=1'
@list($value, $qpart) = explode(';', $part);
@list($value, $qpart) = explode(';', trim($part));
$match = array();
if(!isset($qpart)) {
$prefs[$value] = 1;
@ -1391,4 +1391,4 @@ function common_database_tablename($tablename)
}
//table prefixes could be added here later
return $tablename;
}
}