From e28cd32aba3704e7b449ac280825cb4bb25370a7 Mon Sep 17 00:00:00 2001
From: NROTC_Webmaster <NROTC_Webmaster@1030166.no-reply.drupal.org>
Date: Sun, 29 Jan 2012 15:55:54 -0500
Subject: [PATCH 2/2] php-errors-code-cleanup-1420570-2

Signed-off-by: NROTC_Webmaster <NROTC_Webmaster@1030166.no-reply.drupal.org>
---
 php_errors.install |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/php_errors.install b/php_errors.install
index 449fe7c..d60d848 100644
--- a/php_errors.install
+++ b/php_errors.install
@@ -1,6 +1,8 @@
 <?php
-// $Id: php_errors.install,v 1.6 2010/02/17 22:41:24 ptalindstrom Exp $  
-
+/**
+ * @file
+ * Provide installation data for php_errors.module
+ */
 
 /**
  * Implementation of hook_schema().
@@ -36,7 +38,7 @@ function php_errors_schema() {
 function php_errors_install() {
   // Create tables.
   drupal_install_schema('php_errors');
-  drupal_set_message(t('The table for the PHP Errors archive has been created successfully.'));
+  drupal_set_message(st('The table for the PHP Errors archive has been created successfully.'));
 }
 
 /**
@@ -49,12 +51,10 @@ function php_errors_uninstall() {
   // remove variables
   $result = update_sql("DELETE FROM {variable} WHERE name like 'php_errors_%'");
 
-  
   if ($result['success']) {
-    drupal_set_message('The PHP Errors module was successfully uninstalled.');
+    drupal_set_message(t('The PHP Errors module was successfully uninstalled.'));
   }
   else {
-    drupal_set_message('There was an error removing the php_errors_archive table.', 'error');
+    drupal_set_message(t('There was an error removing the php_errors_archive table.'), 'error');
   }
 }
-
-- 
1.7.7.GIT

