Skip to content

Commit

Permalink
MINOR Replaced calls to deprecated FormField->Name() with getName()
Browse files Browse the repository at this point in the history
  • Loading branch information
chillu committed Oct 29, 2011
1 parent 2ac0ea7 commit ae4dcc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/forms/AssetTableField.php
Expand Up @@ -285,7 +285,7 @@ function DeleteMarkedButton() {
* @return string HTML
*/
public function deletemarked($request) {
$fileIDs = $request->requestVar($this->Name());
$fileIDs = $request->requestVar($this->getName());
$numFiles = 0;
$brokenPageList = '';

Expand Down Expand Up @@ -327,7 +327,7 @@ public function deletemarked($request) {
}

public function movemarked($request) {
$fileIDs = $request->requestVar($this->Name());
$fileIDs = $request->requestVar($this->getName());
$folderId = $request->requestVar('DestFolderID');
$numFiles = 0;

Expand Down

0 comments on commit ae4dcc4

Please sign in to comment.