Commit 480b6504ea5c9f1927803bdd317ea93935dec568

Authored by Elena.Budnik
1 parent 4d810571

typo

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
php/uploadFile.php
... ... @@ -146,7 +146,7 @@
146 146  
147 147 if ($wsMgr->getWsSize() + $fileSize > DISK_QUOTA)
148 148 {
149   - $response = array( 'success' => false, 'error' => 'Please clean up you workspace. You are about to exceed available disk space');
  149 + $response = array( 'success' => false, 'error' => 'Please clean up your workspace. You are about to exceed available disk space');
150 150 unlink($tmpFilePath);
151 151 die(json_encode($response));
152 152 }
... ... @@ -227,7 +227,7 @@
227 227  
228 228 if ($wsMgr->getWsSize() + $fileSize > DISK_QUOTA && $isFile)
229 229 {
230   - $response = array( 'success' => false, 'error' => 'Please clean up you workspace. You are about to exceed available disk space');
  230 + $response = array( 'success' => false, 'error' => 'Please clean up your workspace. You are about to exceed available disk space');
231 231 die(json_encode($response));
232 232 }
233 233  
... ...