diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-02 03:10:57 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-02 03:10:57 +0000 |
commit | 4d80bc33b8924038bd1ca57d548828afe661bb42 (patch) | |
tree | 600b8a2d46ea899d35582667ed00049a0a4367cc /views/default/export/entity.php | |
parent | 89ded32abebd0f2100e0014249df54bde7a44258 (diff) | |
download | elgg-4d80bc33b8924038bd1ca57d548828afe661bb42.tar.gz elgg-4d80bc33b8924038bd1ca57d548828afe661bb42.tar.bz2 |
Refs #2700 replaced most underscores with hyphens - there may be broken display code due to extent of this change
git-svn-id: http://code.elgg.org/elgg/trunk@7493 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/export/entity.php')
-rw-r--r-- | views/default/export/entity.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/views/default/export/entity.php b/views/default/export/entity.php index c2fd7f8b8..333179fbb 100644 --- a/views/default/export/entity.php +++ b/views/default/export/entity.php @@ -24,7 +24,7 @@ $exportable_values = $entity->getExportableValues(); foreach ($entity as $k => $v) { if ((in_array($k, $exportable_values)) || (isadminloggedin())) { ?> - <p class="margin_none"><b><?php echo $k; ?>: </b><?php echo strip_tags($v); ?></p> + <p class="margin-none"><b><?php echo $k; ?>: </b><?php echo strip_tags($v); ?></p> <?php } } @@ -32,12 +32,12 @@ $exportable_values = $entity->getExportableValues(); </div> <?php if ($metadata) { ?> -<div id="metadata" class="margin_top"> +<div id="metadata" class="margin-top"> <h2><?php echo elgg_echo('metadata'); ?></h2> <?php foreach ($metadata as $m) { ?> - <p class="margin_none"><b><?php echo $m->name; ?>: </b><?php echo $m->value; ?></p> + <p class="margin-none"><b><?php echo $m->name; ?>: </b><?php echo $m->value; ?></p> <?php } ?> @@ -46,13 +46,13 @@ $exportable_values = $entity->getExportableValues(); <?php } ?> <?php if ($annotations) { ?> -<div id="annotations" class="margin_top"> +<div id="annotations" class="margin-top"> <h2><?php echo elgg_echo('annotations'); ?></h2> <?php foreach ($annotations as $a) { ?> <table> - <p class="margin_none"><b><?php echo $a->name; ?>: </b><?php echo $a->value; ?></p> + <p class="margin-none"><b><?php echo $a->name; ?>: </b><?php echo $a->value; ?></p> </table> <?php } @@ -61,13 +61,13 @@ $exportable_values = $entity->getExportableValues(); <?php } ?> <?php if ($relationships) { ?> -<div id="relationship" class="margin_top"> +<div id="relationship" class="margin-top"> <h2><?php echo elgg_echo('relationships'); ?></h2> <?php foreach ($relationships as $r) { ?> <table> - <p class="margin_none"><b><?php echo $r->relationship; ?>: </b><?php echo $r->guid_two; ?></p> + <p class="margin-none"><b><?php echo $r->relationship; ?>: </b><?php echo $r->guid_two; ?></p> </table> <?php } |