Browse Source

In Membergroup Requests displayed the request date [Topic 475382]

emanuele 12 years ago
parent
commit
e806ba900b
2 changed files with 10 additions and 1 deletions
  1. 9 0
      Sources/Groups.php
  2. 1 1
      Sources/MoveTopic.php

+ 9 - 0
Sources/Groups.php

@@ -869,6 +869,15 @@ function GroupRequests()
 					'db' => 'reason',
 				),
 			),
+			'date' => array(
+				'header' => array(
+					'value' => $txt['date'],
+					'style' => 'width: 18%;white-space:nowrap;',
+				),
+				'data' => array(
+					'db' => 'time_submitted',
+				),
+			),
 			'action' => array(
 				'header' => array(
 					'value' => '<input type="checkbox" class="input_check" onclick="invertAll(this, this.form);" />',

+ 1 - 1
Sources/MoveTopic.php

@@ -724,6 +724,6 @@ function moveTopicConcurrence()
 		$topic_link = '<a href="' . $scripturl . '?topic=' . $topic . '.0">' . $topic_subject . '</a>';
 		fatal_lang_error('topic_already_moved', false, array($topic_link, $board_link));
 	}
-
 }
+
 ?>