Skip to content

Commit

Permalink
set color "color_11" for <hr> (refs #877)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwpon committed Mar 19, 2010
1 parent aec24b9 commit a6125e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/mobile_frontend/modules/diary/templates/showSuccess.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
(<?php echo $diary->getPublicFlagLabel() ?>)<br>

<?php if ($diary->getPrevious($sf_user->getMemberId()) || $diary->getNext($sf_user->getMemberId())): ?>
<hr>
<hr color="<?php echo $op_color["core_color_11"] ?>">
<center>
<?php if ($diary->getPrevious($sf_user->getMemberId())): ?> <?php echo link_to(__('Previous Diary'), 'diary_show', $diary->getPrevious($sf_user->getMemberId())) ?><?php endif; ?>
<?php if ($diary->getNext($sf_user->getMemberId())): ?> <?php echo link_to(__('Next Diary'), 'diary_show', $diary->getNext($sf_user->getMemberId())) ?><?php endif; ?>
Expand All @@ -28,7 +28,7 @@
<?php include_component('diaryComment', 'list', array('diary' => $diary)) ?>

<?php if ($sf_user->getMemberId()): ?>
<hr>
<hr color="<?php echo $op_color["core_color_11"] ?>">
<?php echo op_within_page_link('') ?>
<?php
$options['title'] = __('Post a diary comment');
Expand All @@ -44,7 +44,7 @@
<?php endif; ?>
<?php endif; ?>

<hr>
<hr color="<?php echo $op_color["core_color_11"] ?>">
<?php echo link_to(__('Diaries of %1%', array('%1%' => $member->name)), 'diary_list_member', $member) ?><br>
<?php if ($diary->member_id !== $sf_user->getMemberId()): ?>
<?php echo link_to(__('Profile of %1%', array('%1%' => $member->name)), 'member/profile?id='.$member->id) ?><br>
Expand Down

0 comments on commit a6125e3

Please sign in to comment.