Fix the typo introduced in the last commit and already fixed in the trunk

This commit is contained in:
Patrick Bihan-Faou 2008-01-02 16:23:21 +00:00
parent e784812eb3
commit a045eaaff5
2 changed files with 4 additions and 4 deletions

View File

@ -212,11 +212,11 @@ class Horde_SyncML_Command_Put extends Horde_SyncML_Command {
{
switch (strtolower(trim($matches[1])))
{
case 'outlook plug-in'
case 'outlook plug-in':
default:
$this->_deviceInfo['deviceType'] = 'workstation';
break;
case 'pocket pc plug-in'
case 'pocket pc plug-in':
$this->_deviceInfo['deviceType'] = 'windowsmobile';
break;
}

View File

@ -154,11 +154,11 @@ class Horde_SyncML_Command_Results extends Horde_SyncML_Command {
{
switch (strtolower(trim($matches[1])))
{
case 'outlook plug-in'
case 'outlook plug-in':
default:
$this->_deviceInfo['deviceType'] = 'workstation';
break;
case 'pocket pc plug-in'
case 'pocket pc plug-in':
$this->_deviceInfo['deviceType'] = 'windowsmobile';
break;
}