I added in this line:
{assign_variable:master_weblog_name="weblog1"}
Accessing the stand-alone form, now shows a page containing the following error messages:
Notice: Only variables should be assigned by reference in /home/bigpi2/public_html/exp/lxw_system/plugins/pi.form_helper.php on line 223
Notice: Only variables should be assigned by reference in /home/bigpi2/public_html/exp/lxw_system/plugins/pi.form_helper.php on line 224
Notice: Only variables should be assigned by reference in /home/bigpi2/public_html/exp/lxw_system/plugins/pi.form_helper.php on line 227
Here’s the top of my template, containing the only lines where my template differs from the one supplied with form_helper. Differences from the one supplied with form_helper are highlighted in green:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml”>
<head>
<title>Stand-Alone Entry Form </title>
<meta name=“generator” content=“BBEdit 8.0” />
<link rel=‘stylesheet’ type=‘text/css’ media=‘all’ href=’{stylesheet=weblog/weblog_css}’ />
<style type=‘text/css’ media=‘all’>@import “{stylesheet=weblog/weblog_css}”;
</style>
</head>
<body>
{assign_variable:master_weblog_name=“weblog1”}
<!—Begin Edit Form—>
<table width=“100%” cellspacing=“1” cellpadding=“3” border=“0”>
{exp:weblog:entries weblog=”{master_weblog_name}” status=“not closed” show_expired=“yes” rdf=“off”}
{exp:form_helper:member_is_author author_id=”{author_id}”}
{if member_not_author}
<tr><td>Sorry. Only the author of this entry is allowed to edit it.</td></tr>
{/if}
{exp:weblog:entry_form weblog=”{master_weblog_name}” return=“weblog/Stand_Alone/{entry_id}”}
The template preferences have PHP allowed, and parsed on input. What am I missing?