Changeset 2440 for trunk/application
- Timestamp:
- 04/06/2008 11:08:43 AM (8 months ago)
- Location:
- trunk/application
- Files:
-
- 2 modified
-
controllers/welcome.php (modified) (1 diff)
-
views/welcome.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/application/controllers/welcome.php
r2314 r2440 30 30 $welcome->links = array 31 31 ( 32 'Home Page' => 'http://kohanaphp.com/',32 'Home Page' => 'http://kohanaphp.com/', 33 33 'Documentation' => 'http://doc.kohanaphp.com/', 34 'Forum' => 'http://forum.kohanaphp.com/',35 'License' => url::base(FALSE).'Kohana License.html',36 'Donate' => 'http://kohanaphp.com/donate.html',34 'Forum' => 'http://forum.kohanaphp.com/', 35 'License' => 'Kohana License.html', 36 'Donate' => 'http://kohanaphp.com/donate.html', 37 37 ); 38 38 -
trunk/application/views/welcome.php
r2077 r2440 28 28 <ul> 29 29 <?php foreach ($links as $title => $url): ?> 30 <li><?php echo html::anchor($url, $title) ?></li>30 <li><?php echo ($title === 'License') ? html::file_anchor($url, $title) : html::anchor($url, $title) ?></li> 31 31 <?php endforeach ?> 32 32 </ul>
