Skip to content

Commit

Permalink
Fix create / edit CF header
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Giroux committed Dec 26, 2011
1 parent f6ca651 commit 1ec088d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/create_edit_columnfamily.php
@@ -1,4 +1,4 @@
<h3><a href="index.php"><?php echo $cluster_name; ?></a> &gt; <a href="describe_keyspace.php?keyspace_name=<?php echo $keyspace_name; ?>"><?php echo $keyspace_name; ?></a> <?php if (!empty($columnfamily_name)): echo "&gt; $columnfamily_name"; endif; ?> <?php if($mode=='create'): echo '&gt; Create Column Family'; endif;?></h3>
<h3><a href="index.php"><?php echo $cluster_name; ?></a> &gt; <a href="describe_keyspace.php?keyspace_name=<?php echo $keyspace_name; ?>"><?php echo $keyspace_name; ?></a> <?php if (!empty($columnfamily_name)): echo '&gt; <a href="describe_columnfamily.php?keyspace_name='.$keyspace_name.'&columnfamily_name='.$columnfamily_name.'">'.$columnfamily_name.'</a>'; endif; ?> <?php if ($mode=='create'): echo '&gt; Create Column Family'; else: echo ' &gt; Edit Column Family'; endif;?></h3>

<?php echo $success_message; ?>
<?php echo $error_message; ?>
Expand Down

0 comments on commit 1ec088d

Please sign in to comment.