source: extensions/ShareThis/changelog.php

Last change on this file was 31051, checked in by SergeD, 9 years ago

version 1.0.0 - see change log for details

  • Property svn:eol-style set to native
File size: 624 bytes
Line 
1<?php
2
3$lines = file('changelog.txt');
4$show = FALSE;
5$first = TRUE;
6
7echo '<div class="changelog">';
8
9foreach ($lines as $line_num => $line):
10  if (trim($line)):
11    if ($show):
12      if (substr( $line, 0, 7 ) === "version"):
13        if ($first):
14          $first = FALSE;
15        else:
16          echo "</ul>";
17        endif;
18        echo "<h3>" . htmlspecialchars(str_replace("version ", "", $line)) . "</h3>\n<ul>";
19      else:
20        echo "<li>" . htmlspecialchars($line) . "</li>\n";
21      endif;
22    elseif (trim($line) == "=== Changelog ==="):
23      $show = TRUE;
24    endif;
25  endif;
26endforeach;
27echo "</ul></div>";
Note: See TracBrowser for help on using the repository browser.