mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-10 17:29:18 -04:00
Change "filename" to "name" in the edit album form. I'd rather have
consistency between field names than deal with underlying issues with Forge bitching about the "name" property.
This commit is contained in:
@@ -31,7 +31,7 @@ class Photos_Controller_Test extends Unit_Test_Case {
|
||||
$controller = new Photos_Controller();
|
||||
$photo = test::random_photo();
|
||||
|
||||
$_POST["filename"] = "new name.jpg";
|
||||
$_POST["name"] = "new name.jpg";
|
||||
$_POST["title"] = "new title";
|
||||
$_POST["description"] = "new description";
|
||||
$_POST["slug"] = "new-slug";
|
||||
@@ -55,7 +55,7 @@ class Photos_Controller_Test extends Unit_Test_Case {
|
||||
$controller = new Photos_Controller();
|
||||
$photo = test::random_photo();
|
||||
|
||||
$_POST["filename"] = "new name.jpg";
|
||||
$_POST["name"] = "new name.jpg";
|
||||
$_POST["title"] = "new title";
|
||||
$_POST["description"] = "new description";
|
||||
$_POST["slug"] = "new slug";
|
||||
|
||||
Reference in New Issue
Block a user