diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-28 11:38:05 -0700 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-28 11:38:05 -0700 |
| commit | 8ef78de3f72f695225ac87223d0815235a630417 (patch) | |
| tree | f2d749126bcd7e54db095e5091fcd1a4e4844929 /modules/gallery/views/simple_uploader.html.php | |
| parent | 2a21f3bc80758a20635534b837c11836a72b202c (diff) | |
| parent | fbc551771153a6664da2c3a3a82e22b912bb3cdc (diff) | |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery/views/simple_uploader.html.php')
| -rw-r--r-- | modules/gallery/views/simple_uploader.html.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/gallery/views/simple_uploader.html.php b/modules/gallery/views/simple_uploader.html.php index ff73dd6f..9285fffe 100644 --- a/modules/gallery/views/simple_uploader.html.php +++ b/modules/gallery/views/simple_uploader.html.php @@ -25,10 +25,12 @@ <?= t("Photos will be uploaded to album: ") ?> </p> <ul class="g-breadcrumbs"> + <? $i = 0 ?> <? foreach ($item->parents() as $parent): ?> - <li> <?= html::clean($parent->title) ?> </li> + <li<? if ($i == 0) print " class=\"g-first\"" ?>> <?= html::clean($parent->title) ?> </li> + <? $i++ ?> <? endforeach ?> - <li class="active"> <?= html::purify($item->title) ?> </li> + <li class="g-active"> <?= html::purify($item->title) ?> </li> </ul> <div id="g-uploadqueue-infobar"> |
