Skip to content

Commit

Permalink
Even more style changes. (SE)
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Feb 25, 2005
1 parent 91b4cb6 commit ebfd5ff
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions mod/glossary/formats/continuous/continuous_format.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ function glossary_show_entry_continuous($course, $cm, $glossary, $entry, $mode='
echo '<td class="entry">';
glossary_print_entry_approval($cm, $entry, $mode);
glossary_print_entry_attachment($entry,'html','right');
echo '<b>';
echo '<span class="concept">';
glossary_print_entry_concept($entry);
echo ':</b> ';
echo ':</span> ';
glossary_print_entry_definition($entry);
$entry->alias = '';
echo '</td></tr>';
Expand Down
4 changes: 2 additions & 2 deletions mod/glossary/formats/dictionary/dictionary_format.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ function glossary_show_entry_dictionary($course, $cm, $glossary, $entry, $mode='
echo '<td class="entry">';
glossary_print_entry_approval($cm, $entry, $mode);
glossary_print_entry_attachment($entry,'html','right');
echo '<b>';
echo '<span class="concept">';
glossary_print_entry_concept($entry);
echo ':</b> ';
echo ':</span> ';
glossary_print_entry_definition($entry);
echo '</td></tr>';
echo '<tr valign="top"><td class="entrylowersection">';
Expand Down
4 changes: 2 additions & 2 deletions mod/glossary/formats/encyclopedia/encyclopedia_format.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ function glossary_show_entry_encyclopedia($course, $cm, $glossary, $entry, $mode

echo '</td>';
echo '<td class="entryheader">';
echo '<b>';
echo '<span class="concept">';
glossary_print_entry_concept($entry);
echo '</b><br />';
echo '</span><br />';
echo '<span class="author">'.$strby.' '.fullname($user, isteacher($course->id));
echo '&nbsp;&nbsp;('.get_string('lastedited').': '.
userdate($entry->timemodified).')</span>';
Expand Down
4 changes: 2 additions & 2 deletions mod/glossary/formats/entrylist/entrylist_format.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ function glossary_show_entry_entrylist($course, $cm, $glossary, $entry, $mode=''
echo '<td class="entry">';
if ($entry) {
glossary_print_entry_approval($cm, $entry, $mode);
echo "<b><a href=\"showentry.php?courseid=$course->id\&amp;eid=$entry->id\&amp;displayformat=dictionary\" target=\"_blank\" onClick=\"return openpopup('/mod/glossary/showentry.php?courseid=$course->id\&amp;eid=$entry->id\&amp;displayformat=dictionary', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);\">";
echo "<span class=\"concept\"><a href=\"showentry.php?courseid=$course->id\&amp;eid=$entry->id\&amp;displayformat=dictionary\" target=\"_blank\" onClick=\"return openpopup('/mod/glossary/showentry.php?courseid=$course->id\&amp;eid=$entry->id\&amp;displayformat=dictionary', 'entry', 'menubar=0,location=0,scrollbars,resizable,width=600,height=450', 0);\">";
glossary_print_entry_concept($entry);
echo '</a></b> ';
echo '</a></span> ';

if ( $return = glossary_print_entry_commentslink($course, $cm, $glossary, $entry,$mode,$hook, 'html') ) {
echo "($return)";
Expand Down
4 changes: 2 additions & 2 deletions mod/glossary/formats/faq/faq_format.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ function glossary_show_entry_faq($course, $cm, $glossary, $entry, $mode="", $hoo
echo '<td class="entryheader">';
$entry->course = $course->id;

echo '<b>' . get_string('question','glossary') . ':</b> ';
echo '<span class="concept">' . get_string('question','glossary') . ': ';
glossary_print_entry_concept($entry);
echo '<br />';
echo '</span><br />';

echo '<span class="author">('.get_string('lastedited').': '.
userdate($entry->timemodified).')</span>';
Expand Down
4 changes: 2 additions & 2 deletions mod/glossary/formats/fullwithauthor/fullwithauthor_format.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ function glossary_show_entry_fullwithauthor($course, $cm, $glossary, $entry, $mo

echo '<td class="entryheader">';

echo '<strong>';
echo '<span class="concept">';
glossary_print_entry_concept($entry);
echo '</strong><br />';
echo '</span><br />';

echo '<span class="author">'.$strby.' '.fullname($user, isteacher($course->id));
echo '&nbsp;&nbsp;('.get_string('lastedited').': '.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ function glossary_show_entry_fullwithoutauthor($course, $cm, $glossary, $entry,

echo '<td class="entryheader">';

echo '<strong>';
echo '<span class="concept">';
glossary_print_entry_concept($entry);
echo '</strong><br />';
echo '</span><br />';

echo '('.get_string('lastedited').': '.
userdate($entry->timemodified).')';
Expand Down

0 comments on commit ebfd5ff

Please sign in to comment.