summaryrefslogtreecommitdiff
path: root/scripts/createsim.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2009-11-08 23:22:38 +0100
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2009-11-08 23:22:38 +0100
commit0ab17f382b9993ada3d12d4cdace72cca53fb545 (patch)
treeea8d1923f5ceb2a797e6b6962f74ae33367cf891 /scripts/createsim.php
parent221b779e88e51b70a2c3509798154c461203e636 (diff)
* [Cc]an't -> [Cc]annot
* [Cc]ould't -> [Cc]ould not
Diffstat (limited to 'scripts/createsim.php')
-rw-r--r--scripts/createsim.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/createsim.php b/scripts/createsim.php
index 1266a9700..592853f86 100644
--- a/scripts/createsim.php
+++ b/scripts/createsim.php
@@ -85,7 +85,7 @@ function newSub($i)
$from = User::staticGet('nickname', $fromnick);
if (empty($from)) {
- throw new Exception("Can't find user '$fromnick'.");
+ throw new Exception("Cannot find user '$fromnick'.");
}
$t = rand(0, $i - 1);
@@ -102,7 +102,7 @@ function newSub($i)
$to = User::staticGet('nickname', $tunic);
if (empty($to)) {
- throw new Exception("Can't find user '$tunic'.");
+ throw new Exception("Cannot find user '$tunic'.");
}
subs_subscribe_to($from, $to);