Skip to content
Snippets Groups Projects
Commit 593c97f6 authored by Fabian Erni's avatar Fabian Erni Committed by Demian Katz
Browse files

Update editlist.phtml

MyResearch/EditList/NEW?recordId=xxxxx&recordSource=VuFind
Caused an error because title is not set in list object
parent 86864a62
No related merge requests found
......@@ -14,7 +14,7 @@
<form method="post" name="<?=empty($this->list->id) ? 'newList' : 'editListForm'?>" action="">
<label class="displayBlock" for="list_title"><?=$this->transEsc('List'); ?>:</label>
<input id="list_title" type="text" name="title" value="<?=$this->escapeHtml($this->list['title']); ?>" size="50"
<input id="list_title" type="text" name="title" value="<?=(isset($this->list['title'])?$this->escapeHtml($this->list['title']):''); ?>" size="50"
class="mainFocus <?=$this->jqueryValidation(array('required'=>'This field is required')) ?>"/>
<label class="displayBlock" for="list_desc"><?=$this->transEsc('Description') ?></label>
<textarea id="list_desc" name="desc" rows="3" cols="50"><?=$this->escapeHtml($this->list['description']) ?></textarea>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment