[Spidertree-cvs] spidertree/edit album.php,1.5,1.6
Status: Pre-Alpha
Brought to you by:
spiderr
|
From: <sp...@us...> - 2004-02-08 02:23:29
|
Update of /cvsroot/spidertree/spidertree/edit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31575/edit Modified Files: album.php Log Message: uploads getting to disk, and shoved in database. Index: album.php =================================================================== RCS file: /cvsroot/spidertree/spidertree/edit/album.php,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- album.php 7 Feb 2004 21:05:35 -0000 1.5 +++ album.php 8 Feb 2004 02:20:31 -0000 1.6 @@ -10,14 +10,16 @@ if( $gAlbum->store( $FORM ) ) { if( $new ) { $smarty->assign('spidertree_body','tikipackage:spidertree/spidertree_upload.tpl'); +pvd( $FORM ); } else { include_once( 'album_list_inc.php' ); } + $smarty->assign_by_ref( 'album', $FORM ); } else { $smarty->assign('spidertree_body','tikipackage:spidertree/spidertree_edit_album_info.tpl'); + $smarty->assign_by_ref( 'FORM', $FORM ); $smarty->assign_by_ref( 'ERRORS', $gAlbum->mErrors ); } - $smarty->assign_by_ref( 'FORM', $FORM ); } elseif( isset( $fAlbumEditInfo ) ) { $smarty->assign_by_ref( 'FORM', $gAlbum->mRow ); $smarty->assign('spidertree_body','tikipackage:spidertree/spidertree_edit_album_info.tpl'); |