'; echo ' | '."\n";
+echo ' | '."\n";
foreach ( $processors as $processorid => $processor){
- echo ''.get_string($processor->name, 'messageprocessor_'.$processor->name).' | ';
+ echo ''.get_string($processor->name, 'messageprocessor_'.$processor->name).' | ';
}
echo ' ';
/// TODO: (from martin)
/// 1) Can we show the popuyp first (it's the default and always there)
-/// 2) Can we NOT show plugins here unless they have been configured in the section below
+/// 2) Can we perhaps NOT show plugins here unless they have been configured in the section below
foreach ( $providers as $providerid => $provider){
$providername = get_string('messageprovider:'.$provider->name, $provider->component);
- echo ''.$providername.' | | '."\n";
+ echo ''.$providername.' | | '."\n";
foreach (array('loggedin', 'loggedoff') as $state){
$state_res = get_string($state, 'message');
echo ''.$state_res.' | '."\n";
@@ -233,7 +232,6 @@ foreach ( $providers as $providerid => $provider){
}
}
echo ' ';
-echo ' ';
echo '';
//get a listing of all the message processors
diff --git a/theme/standard/styles_layout.css b/theme/standard/styles_layout.css
index e20572d4eab..71ba2680117 100644
--- a/theme/standard/styles_layout.css
+++ b/theme/standard/styles_layout.css
@@ -2573,6 +2573,11 @@ body#message-edit fieldset {
padding: 20px;
}
+body#message-edit th {
+ padding-left: 10px;
+ padding-right: 10px;
+}
+
/***
*** Notes
***/
|