Index: wikitools/wikitools.pages.inc
===================================================================
--- wikitools/wikitools.pages.inc	(revision 423)
+++ wikitools/wikitools.pages.inc	(working copy)
@@ -74,7 +74,7 @@
     }
     else if (count($found_nodes) > 1) {
       // Multiple match for title.
-      drupal_set_title(t('Page found: @page', $page_name));
+      drupal_set_title(t('Page found: %page', array('%page' => $page_name)));
       $output .= theme('wikitools_page_found', $page_name, $found_nodes);
     }
     else {
@@ -92,11 +92,11 @@
         drupal_goto("node/$node->nid");
       }
       else if (count($moved_nodes) > 0) {
-        drupal_set_title(t('Page moved: @page', $page_name));
+        drupal_set_title(t('Page moved: %page', array('%page' => $page_name)));
         $output = theme('wikitools_page_moved', $page_name, $moved_nodes);
       }
       else {
-        drupal_set_title(t('Page does not exist: @page', $page_name));
+        drupal_set_title(t('Page does not exist: %page', array('%page' => $page_name)));
         $output = theme('wikitools_page_does_not_exist', $page_name);
       }
     }
@@ -201,7 +201,7 @@
       }
     }
     // Some of the callbacks could have set the page title, so we reset it.
-    drupal_set_title(t('Page does not exist: @page', $page_name));
+    drupal_set_title(t('Page does not exist: %page', array('%page' => $page_name));
   }
   return $output;
 }
