Skip to content

Commit

Permalink
Updated index.php to skip lib/
Browse files Browse the repository at this point in the history
  • Loading branch information
jbroadway committed Aug 28, 2012
1 parent 05cc89e commit 817b2bd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions index.php
Expand Up @@ -11,6 +11,10 @@
$files = glob ('*/*.php');

foreach ($files as $file) {
if (strpos ($file, 'lib/') === 0) {
continue;
}

printf (
'<li><a href="%s" target="_blank">%s - %s</a> (<a href="src.php?lib=%s&file=%s" target="_blank">src</a>)</li>',
$file,
Expand Down

0 comments on commit 817b2bd

Please sign in to comment.