aboutsummaryrefslogtreecommitdiffstats
path: root/gsxlib.php
diff options
context:
space:
mode:
Diffstat (limited to 'gsxlib.php')
-rw-r--r--gsxlib.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/gsxlib.php b/gsxlib.php
index b9e81e8..b32539a 100644
--- a/gsxlib.php
+++ b/gsxlib.php
@@ -114,7 +114,7 @@ class GsxLib
'userTimeZone' => $tz,
)
);
-syslog(LOG_ERR, print_r($a, true));
+
try {
$this->session_id = $this->client
->Authenticate($a)
@@ -523,15 +523,15 @@ syslog(LOG_ERR, print_r($a, true));
{
$result = false;
$rex = array(
- 'partNumber' => '/^([a-z]{1,2})?\d{3}\-\d{4}$/i',
- 'serialNumber' => '/^[a-z0-9]{11,12}$/i',
- 'eeeCode' => '/^[A-Z0-9]{3,4}$/', // only match ALL-CAPS!
- 'returnOrder' => '/^7\d{9}$/',
- 'repairNumber' => '/^\d{12}$/',
- 'dispatchId' => '/^G\d{9}$/i',
+ 'partNumber' => '/^([A-Z]{1,2})?\d{3}\-?(\d{4}|[A-Z]{2})(/[A-Z])?$/i',
+ 'serialNumber' => '/^[a-z0-9]{11,12}$/i',
+ 'eeeCode' => '/^[A-Z0-9]{3,4}$/', // only match ALL-CAPS!
+ 'returnOrder' => '/^7\d{9}$/',
+ 'repairNumber' => '/^\d{12}$/',
+ 'dispatchId' => '/^G\d{9}$/',
'alternateDeviceId' => '/^\d{15}$/',
- 'diagnosticEventNumber' => '/^\d{23}$/'
- // 12715075303192012074604
+ 'diagnosticEventNumber' => '/^\d{23}$/',
+ 'productName' => '/^i?Mac/',
);
foreach ($rex as $k => $v) {