Skip to content

Commit

Permalink
MDL-21694 moving message processor strings to correct plugin location
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Apr 1, 2010
1 parent a845d68 commit b313071
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions message/edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
$number_procs = count($processors);
echo '<table cellpadding="2"><tr><td>&nbsp;</td>'."\n";
foreach ( $processors as $processorid => $processor){
echo '<th align="center">'.get_string($processor->name, 'messageprocessor_'.$processor->name).'</th>';
echo '<th align="center">'.get_string($processor->name, 'message_'.$processor->name).'</th>';
}
echo '</tr>';

Expand Down Expand Up @@ -247,7 +247,7 @@
if (class_exists($processclass)) {
$pclass = new $processclass();
echo '<fieldset id="messageprocessor_'.$processor->name.'" class="clearfix">';
echo '<legend class="ftoggler">'.get_string($processor->name, 'messageprocessor_'.$processor->name).'</legend>';
echo '<legend class="ftoggler">'.get_string($processor->name, 'message_'.$processor->name).'</legend>';

echo $pclass->config_form($preferences);

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b313071

Please sign in to comment.