summaryrefslogtreecommitdiff
path: root/scripts/createsim.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2009-11-08 23:28:51 +0100
committerBrion Vibber <brion@pobox.com>2009-11-08 23:28:51 +0100
commitfc5002015b2a9e16a3c6b9992d55b45c73a8d2fb (patch)
tree15174fb81ee17b7d9117d009fd3cc5572168bf51 /scripts/createsim.php
parentec6a38a62786c85e8ee30c5726ea81f82465b39d (diff)
Revert "* [Cc]an't -> [Cc]annot"
This reverts commit 0ab17f382b9993ada3d12d4cdace72cca53fb545.
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 592853f86..1266a9700 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("Cannot find user '$fromnick'.");
+ throw new Exception("Can't 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("Cannot find user '$tunic'.");
+ throw new Exception("Can't find user '$tunic'.");
}
subs_subscribe_to($from, $to);