]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix regression in OpenID autosubmit page.
authorBrion Vibber <brion@pobox.com>
Fri, 13 Nov 2009 23:34:15 +0000 (15:34 -0800)
committerBrion Vibber <brion@pobox.com>
Fri, 13 Nov 2009 23:34:15 +0000 (15:34 -0800)
Since core JS loads were moved to the bottom, the JavaScript was being run before jQuery was loaded, so the onload event never got set. Moved it down to the scripts section.

plugins/OpenID/openid.php

index ff7a9389949c39a0184d354fab0f38b46d0778ec..dd628e7733ffc5edc6ec3ef1d8c8dc5fec6c184c 100644 (file)
@@ -280,6 +280,11 @@ class AutosubmitAction extends Action
     function showContent()
     {
         $this->raw($this->form_html);
+    }
+    
+    function showScripts()
+    {
+        parent::showScripts();
         $this->element('script', null,
                        '$(document).ready(function() { ' .
                        '    $(\'#'. $this->form_id .'\').submit(); '.