Skip to content

Commit

Permalink
MDL-48688: inbound: remove spaces from exception
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitagarwal committed Jan 7, 2015
1 parent ac38af7 commit 2ed7ca6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/classes/message/inbound/address_manager.php
Expand Up @@ -325,8 +325,8 @@ protected function process($address) {
if ($content['handlerid1'] > 0 || $content['userid1'] > 0 || $content['datavalue1'] > 0) {
// Any 64-bit integer which is greater than the 32-bit integer size will have a non-zero value in the first
// half of the integer.
throw new \moodle_exception('Mixed environment.
Key generated with a 64-bit machine but received into a 32-bit machine.');
throw new \moodle_exception('Mixed environment.' .
' Key generated with a 64-bit machine but received into a 32-bit machine.');
}
$content['handlerid'] = $content['handlerid2'];
$content['userid'] = $content['userid2'];
Expand Down

0 comments on commit 2ed7ca6

Please sign in to comment.