<div dir="ltr">There is a great tool called <a href="https://www.google.com/" target="_blank">Google</a> for troubleshooting errors ;)<div class="gmail_extra"><br clear="all"><div><a href="http://twitter.com/ryanve" target="_blank">@ryanve</a></div>



<br><br><div class="gmail_quote">On Fri, Mar 15, 2013 at 12:52 PM, Otto <span dir="ltr">&lt;<a href="mailto:otto@ottodestruct.com" target="_blank">otto@ottodestruct.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


&quot;Undefined index&quot; are pretty much always where you&#39;re using a<br>
variable&#39;s value without first testing if the variable is actually set<br>
or not.<br>
<br>
So if you have something like this:<br>
<br>
if ( $_REQUEST[&#39;action&#39;] == &#39;whatever&#39; )<br>
<br>
Then you need to modify it to this:<br>
<br>
if ( isset( $_REQUEST[&#39;action&#39;] ) &amp;&amp; $_REQUEST[&#39;action&#39;] == &#39;whatever&#39; )<br>
<span><font color="#888888"><br>
-Otto<br>
</font></span><div><br>
<br>
<br>
On Fri, Mar 15, 2013 at 11:36 AM, Carla Izumi Bamford<br>
&lt;<a href="mailto:decadent.muse.org@gmail.com" target="_blank">decadent.muse.org@gmail.com</a>&gt; wrote:<br>
&gt; I&#39;m trying to debug my function.php which is for the option page.<br>
&gt; And I need some help figuring this out.<br>
&gt;<br>
&gt; Notice: Undefined index: action in<br>
&gt; /home/sites/heteml/users47/0/0/0/000/web/work/wordpress/wp-content/themes/simplenotes/functions.php<br>
&gt; on line 187<br>
</div><div><div>_______________________________________________<br>
theme-reviewers mailing list<br>
<a href="mailto:theme-reviewers@lists.wordpress.org" target="_blank">theme-reviewers@lists.wordpress.org</a><br>
<a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
</div></div></blockquote></div><br></div></div>