summaryrefslogtreecommitdiffstats
path: root/templates/show_edit_album_row.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-17 05:12:05 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-17 05:12:05 +0000
commitdc4c93c9f27393ff7f99d2473a382ca0c7d6249c (patch)
treeb69f248d46e90ee985dfa0c3db871526d323342b /templates/show_edit_album_row.inc.php
parentea624090bcbab6c74435a2e2bf4fed8b05ac5be1 (diff)
downloadampache-dc4c93c9f27393ff7f99d2473a382ca0c7d6249c.tar.gz
ampache-dc4c93c9f27393ff7f99d2473a382ca0c7d6249c.tar.bz2
ampache-dc4c93c9f27393ff7f99d2473a382ca0c7d6249c.zip
forgot one file
Diffstat (limited to 'templates/show_edit_album_row.inc.php')
-rw-r--r--templates/show_edit_album_row.inc.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/templates/show_edit_album_row.inc.php b/templates/show_edit_album_row.inc.php
new file mode 100644
index 00000000..b66ae255
--- /dev/null
+++ b/templates/show_edit_album_row.inc.php
@@ -0,0 +1,32 @@
+<?php
+/*
+
+ Copyright (c) 2001 - 2007 Ampache.org
+ All rights reserved.
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License v2
+ as published by the Free Software Foundation.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+*/
+?>
+<td colspan="6">
+<form method="post" id="edit_album_<?php echo $album->id; ?>">
+<input type="input" name="name" value="<?php echo scrub_out($album->name); ?>" />
+<input type="hidden" name="id" value="<?php echo $album->id; ?>" />
+<input type="hidden" name="type" value="album" />
+<span onclick="ajaxPost('<?php echo Config::get('ajax_url'); ?>?action=edit_object&amp;id=<?php echo $album->id; ?>&amp;type=album','edit_album_<?php echo $album->id; ?>');">
+ <img src="<?php echo Config::get('web_path'); ?>/images/icon_download.png">
+</span>
+</form>
+</td>
+</td>