/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk

« back to all changes in this revision

Viewing changes to codeigniter/application/views/codeviewer/codeviewer.php

  • Committer: Gustav Hatvigsson
  • Date: 2013-05-13 13:53:15 UTC
  • mfrom: (58.1.2 lenasys)
  • Revision ID: gustav.hartvigsson@gmail.com-20130513135315-v4fpzy00ni76v2gi
Merged some changes to the Codeviewer

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
        <div class="container">
94
94
                <div class="row">
95
95
                        <div class="span4" id="doc">
96
 
                                <?php
97
 
                                echo $documentation;
 
96
                                <?php 
 
97
                                        foreach($editors as $editor) {
 
98
                                                if($editor[0] == 1) {
 
99
                                                        echo $editor[1];
 
100
                                                }
 
101
                                        }
98
102
                                ?>
 
103
 
99
104
                        </div>
100
105
                        <div class="span8">
101
106
                                <?php 
102
 
                                echo $editors;
 
107
                                        foreach($editors as $editor) {
 
108
                                                if($editor[0] == 2) {
 
109
                                                        echo $editor[1];
 
110
                                                }
 
111
                                        }
103
112
                                ?>
104
 
                                
105
113
                        </div>
106
114
                </div>
107
115
        </div>