From 7fe908c50c8dbc5cc05f571dbe11d66141caacd4 Mon Sep 17 00:00:00 2001
From: Marius Cramer <m.cramer@pixcept.de>
Date: Thu, 14 Nov 2013 09:01:22 -0500
Subject: [PATCH] Cleaning up code to match coding guidelines

---
 interface/web/sites/list/aps_installedpackages.list.php |   64 ++++++++++++++++----------------
 1 files changed, 32 insertions(+), 32 deletions(-)

diff --git a/interface/web/sites/list/aps_installedpackages.list.php b/interface/web/sites/list/aps_installedpackages.list.php
index 0f90a73..d9a51d8 100644
--- a/interface/web/sites/list/aps_installedpackages.list.php
+++ b/interface/web/sites/list/aps_installedpackages.list.php
@@ -48,26 +48,26 @@
 
 // Search fields
 $liste["item"][] = array('field'    => 'name',
-                         'datatype' => 'VARCHAR',
-                         'formtype' => 'TEXT',
-                         'op'       => 'LIKE',
-                         'prefix'   => '%',
-                         'suffix'   => '%',
-                         'width'    => '',
-                         'value'    => '',
-						 'table'	=> 'aps_packages');
- 
+	'datatype' => 'VARCHAR',
+	'formtype' => 'TEXT',
+	'op'       => 'LIKE',
+	'prefix'   => '%',
+	'suffix'   => '%',
+	'width'    => '',
+	'value'    => '',
+	'table' => 'aps_packages');
+
 $liste["item"][] = array('field'    => 'version',
-                         'datatype' => 'VARCHAR',
-                         'formtype' => 'TEXT',
-                         'op'       => 'like',
-                         'prefix'   => '%',
-                         'suffix'   => '%',
-                         'width'    => '',
-                         'value'    => '',
-						 'table'	=> 'aps_packages');
- 
- /*
+	'datatype' => 'VARCHAR',
+	'formtype' => 'TEXT',
+	'op'       => 'like',
+	'prefix'   => '%',
+	'suffix'   => '%',
+	'width'    => '',
+	'value'    => '',
+	'table' => 'aps_packages');
+
+/*
 $liste["item"][] = array('field'    => 'customer_id',
                          'datatype' => 'INTEGER',
                          'formtype' => 'SELECT',
@@ -77,17 +77,17 @@
                          'width'    => '',
                          'value'    => '');
 */
-                         
+
 $liste["item"][] = array('field'    => 'instance_status',
-                         'datatype' => 'VARCHAR',
-                         'formtype' => 'SELECT',
-                         'op'       => '=',
-                         'prefix'   => '',
-                         'suffix'   => '',
-                         'width'    => '',
-                         'value'    => array(INSTANCE_INSTALL => $app->lng('Installation_task'),
-                                             INSTANCE_ERROR => $app->lng('Installation_error'),
-                                             INSTANCE_SUCCESS => $app->lng('Installation_success'),
-                                             INSTANCE_REMOVE => $app->lng('Installation_remove')),
-						 'table'	=> 'aps_instances'); 
-?>
\ No newline at end of file
+	'datatype' => 'VARCHAR',
+	'formtype' => 'SELECT',
+	'op'       => '=',
+	'prefix'   => '',
+	'suffix'   => '',
+	'width'    => '',
+	'value'    => array(INSTANCE_INSTALL => $app->lng('Installation_task'),
+		INSTANCE_ERROR => $app->lng('Installation_error'),
+		INSTANCE_SUCCESS => $app->lng('Installation_success'),
+		INSTANCE_REMOVE => $app->lng('Installation_remove')),
+	'table' => 'aps_instances');
+?>

--
Gitblit v1.9.1