diff options
Diffstat (limited to 'views/default/usersettings')
4 files changed, 9 insertions, 9 deletions
diff --git a/views/default/usersettings/plugins.php b/views/default/usersettings/plugins.php index 71be11d9f..c4df9e26b 100644 --- a/views/default/usersettings/plugins.php +++ b/views/default/usersettings/plugins.php @@ -7,7 +7,7 @@ */ // Description of what's going on -echo "<div class='user_settings margin_top'>".elgg_view('output/longtext', array('value' => elgg_echo("usersettings:plugins:description")))."</div>"; +echo "<div class='user-settings margin-top'>".elgg_view('output/longtext', array('value' => elgg_echo("usersettings:plugins:description")))."</div>"; $limit = get_input('limit', 10); $offset = get_input('offset', 0); diff --git a/views/default/usersettings/plugins_opt/plugin.php b/views/default/usersettings/plugins_opt/plugin.php index 9638e00af..981d8d937 100644 --- a/views/default/usersettings/plugins_opt/plugin.php +++ b/views/default/usersettings/plugins_opt/plugin.php @@ -23,7 +23,7 @@ if ($user_guid) { if (elgg_view("usersettings/{$plugin}/edit")) { ?> -<div class="user_settings"> +<div class="user-settings"> <h3><?php echo elgg_echo($plugin); ?></h3> <div id="<?php echo $plugin; ?>_settings"> diff --git a/views/default/usersettings/statistics_opt/numentities.php b/views/default/usersettings/statistics_opt/numentities.php index c80347b34..10d2b7c68 100644 --- a/views/default/usersettings/statistics_opt/numentities.php +++ b/views/default/usersettings/statistics_opt/numentities.php @@ -11,7 +11,7 @@ $entity_stats = get_entity_statistics(get_loggedin_userid()); if ($entity_stats) { ?> -<div class="user_settings statistics"> +<div class="user-settings statistics"> <h3><?php echo elgg_echo('usersettings:statistics:label:numentities'); ?></h3> <table class="styled"> <?php @@ -34,7 +34,7 @@ if ($entity_stats) { } echo <<< END <tr class="{$even_odd}"> - <td class="column_one"><b>{$a}:</b></td> + <td class="column-one"><b>{$a}:</b></td> <td>{$b}</td> </tr> END; diff --git a/views/default/usersettings/statistics_opt/online.php b/views/default/usersettings/statistics_opt/online.php index bbe6203ce..dc24130cd 100644 --- a/views/default/usersettings/statistics_opt/online.php +++ b/views/default/usersettings/statistics_opt/online.php @@ -16,13 +16,13 @@ if ($log) { } ?> -<div class="user_settings details"> +<div class="user-settings details"> <h3><?php echo elgg_echo('usersettings:statistics:yourdetails'); ?></h3> <table class="styled"> - <tr class="odd"><td class="column_one"><?php echo elgg_echo('usersettings:statistics:label:name'); ?></td><td><?php echo $user->name; ?></td></tr> - <tr class="even"><td class="column_one"><?php echo elgg_echo('usersettings:statistics:label:email'); ?></td><td><?php echo $user->email; ?></td></tr> - <tr class="odd"><td class="column_one"><?php echo elgg_echo('usersettings:statistics:label:membersince'); ?></td><td><?php echo date("r",$user->time_created); ?></td></tr> - <tr class="even"><td class="column_one"><?php echo elgg_echo('usersettings:statistics:label:lastlogin'); ?></td><td><?php echo date("r",$logged_in); ?></td></tr> + <tr class="odd"><td class="column-one"><?php echo elgg_echo('usersettings:statistics:label:name'); ?></td><td><?php echo $user->name; ?></td></tr> + <tr class="even"><td class="column-one"><?php echo elgg_echo('usersettings:statistics:label:email'); ?></td><td><?php echo $user->email; ?></td></tr> + <tr class="odd"><td class="column-one"><?php echo elgg_echo('usersettings:statistics:label:membersince'); ?></td><td><?php echo date("r",$user->time_created); ?></td></tr> + <tr class="even"><td class="column-one"><?php echo elgg_echo('usersettings:statistics:label:lastlogin'); ?></td><td><?php echo date("r",$logged_in); ?></td></tr> </table> </div>
\ No newline at end of file |