diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-08-28 12:37:01 -0700 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-28 12:37:01 -0700 |
| commit | dcead39dfbd1885720e888446d0572e11b7ad47c (patch) | |
| tree | 11be9d25f96840743bbc3cfb3b55f9858b8a2c5c /modules/organize/views | |
| parent | 36d1a8c4f2c85ed2ece0212ce1e0b682056d0d2a (diff) | |
| parent | e24d23bf14af8ac3bbcc2431c56be118f9f881b4 (diff) | |
Merge branch 'talmdal_branch' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/organize/views')
| -rw-r--r-- | modules/organize/views/organize_dialog.html.php | 6 | ||||
| -rw-r--r-- | modules/organize/views/organize_thumb_grid.html.php | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/modules/organize/views/organize_dialog.html.php b/modules/organize/views/organize_dialog.html.php index cd987819..7c09266f 100644 --- a/modules/organize/views/organize_dialog.html.php +++ b/modules/organize/views/organize_dialog.html.php @@ -11,10 +11,10 @@ <h3><?= t("Albums") ?></h3> </div> <div id="gMessage" class="yui-u"> - <div class="gInfo"><?= t("Select one or more items to edit; drag and drop items to re-order or move between albums") ?></div> + <div class="gInfo"><?= t("Drag and drop photos to re-order or move between albums") ?></div> </div> </div> - <div id= "gOrganizeContentPane" class="yui-gf"> + <div id="gOrganizeContentPane" class="yui-gf"> <div id="gOrganizeTreeContainer" class="yui-u first"> <ul id="gOrganizeAlbumTree"> <?= $album_tree ?> @@ -22,7 +22,7 @@ </div> <div id="gOrganizeDetail" class="yui-u"> <div id="gMicroThumbPanel" - ref="<?= url::site("organize/content/__ITEM_ID__/__OFFSET__") ?>"> + ref="<?= url::site("organize/content/__ITEM_ID__/__OFFSET__") ?>"> <ul id="gMicroThumbGrid"> <?= $micro_thumb_grid ?> </ul> diff --git a/modules/organize/views/organize_thumb_grid.html.php b/modules/organize/views/organize_thumb_grid.html.php index 671e0ce4..5adb487a 100644 --- a/modules/organize/views/organize_thumb_grid.html.php +++ b/modules/organize/views/organize_thumb_grid.html.php @@ -1,10 +1,10 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <? foreach ($item->children(25, $offset) as $child): ?> <li class="gMicroThumbGridCell" ref="<?= $child->id ?>"> -<div id="gMicroThumb_<?= $child->id ?>" - class="gMicroThumb <?= $child->is_album() ? "gAlbum" : "gPhoto" ?>"> - <?= $child->thumb_img(array("class" => "gThumbnail", "ref" => $child->id), 90, true) ?> -</div> + <div id="gMicroThumb_<?= $child->id ?>" + class="gMicroThumb <?= $child->is_album() ? "gAlbum" : "gPhoto" ?>"> + <?= $child->thumb_img(array("class" => "gThumbnail", "ref" => $child->id), 90, true) ?> + </div> </li> <? endforeach ?> |
