diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-06-06 15:24:14 -0700 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-06-06 15:24:14 -0700 |
commit | 0e415dae9b29d792f631d3b94349086b8094c920 (patch) | |
tree | edc30275caff571f2d447dd517f42d94fb3e38d7 /modules/gallery/views/admin_block_log_entries.html.php | |
parent | 329bd8caa126040ba7abaf28e8f76e0b6739ceff (diff) |
Preliminary BiDi support (needs *a lot* of tweaking)
Diffstat (limited to 'modules/gallery/views/admin_block_log_entries.html.php')
-rw-r--r-- | modules/gallery/views/admin_block_log_entries.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/views/admin_block_log_entries.html.php b/modules/gallery/views/admin_block_log_entries.html.php index 5d8f3084..38070fe1 100644 --- a/modules/gallery/views/admin_block_log_entries.html.php +++ b/modules/gallery/views/admin_block_log_entries.html.php @@ -1,7 +1,7 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <ul> <? foreach ($entries as $entry): ?> - <li class="<?= log::severity_class($entry->severity) ?>"> + <li class="<?= log::severity_class($entry->severity) ?>" style="direction: ltr"> <a href="<?= url::site("user/$entry->user_id") ?>"><?= p::clean($entry->user->name) ?></a> <?= date("Y-M-d H:i:s", $entry->timestamp) ?> <?= $entry->message ?> |