diff options
| author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-21 10:51:54 +0000 | 
|---|---|---|
| committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-21 10:51:54 +0000 | 
| commit | 72847ed999de5c3ee228ffe70a2879bb78b05247 (patch) | |
| tree | faa6aca13894f43561d24276925f347b37428926 /mod/logbrowser/views/default | |
| parent | 578e9ad717b4d7249f5a19ff2535ee9e8aa6f824 (diff) | |
| download | elgg-72847ed999de5c3ee228ffe70a2879bb78b05247.tar.gz elgg-72847ed999de5c3ee228ffe70a2879bb78b05247.tar.bz2 | |
using - in log browser css class names
git-svn-id: http://code.elgg.org/elgg/trunk@8804 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/logbrowser/views/default')
| -rw-r--r-- | mod/logbrowser/views/default/logbrowser/table.php | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/mod/logbrowser/views/default/logbrowser/table.php b/mod/logbrowser/views/default/logbrowser/table.php index 8b3ed5901..86c8a1423 100644 --- a/mod/logbrowser/views/default/logbrowser/table.php +++ b/mod/logbrowser/views/default/logbrowser/table.php @@ -45,22 +45,22 @@ $log_entries = $vars['log_entries'];  		}  ?>  	<tr <?php echo $alt; ?>> -		<td class="log_entry_time"> +		<td class="log-entry-time">  			<?php echo date('r', $entry->time_created); ?>  		</td> -		<td class="log_entry_user"> +		<td class="log-entry-user">  			<?php echo $user_link; ?>  		</td> -		<td class="log_entry_guid"> +		<td class="log-entry-guid">  			<?php echo $user_guid_link; ?>  		</td> -		<td class="log_entry_object"> +		<td class="log-entry-object">  			<?php echo $object_link; ?>  		</td> -		<td class="log_entry_guid"> +		<td class="log-entry-guid">  			<?php echo $entry->object_id; ?>  		</td> -		<td class="log_entry_action"> +		<td class="log-entry-action">  			<?php echo elgg_echo($entry->event); ?>  		</td>  	</tr> | 
