phpBMS

Changeset 643 for trunk/phpbms/common

Show
Ignore:
Timestamp:
09/02/09 14:00:56 (3 years ago)
Author:
nate
Message:
  • Applied patch found in ticket [352] that fixes a bug in post.php in an incorrect table join ( it now correctly joins on the uuid instead of the id).
  • Applied patch found in ticket [354] ( with a minor tweak ) that fixes many spelling errors.
Location:
trunk/phpbms/common/javascript
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/phpbms/common/javascript/fields.js

    r510 r643  
    4949 
    5050        //need to itterate though all fields... if you find 
    51         // --not found-- anywhere.... invlaidate the form 
     51        // --not found-- anywhere.... invalidate the form 
    5252        for(i=0;i<theform.length;i++){ 
    5353                if(theform[i].value && theform[i].value=="--not found--"){ 
  • trunk/phpbms/common/javascript/queryfunctions.js

    r559 r643  
    322322} 
    323323 
    324 // Pass the Sort Parameters and subit the form 
     324// Pass the Sort Parameters and submit the form 
    325325function doSort(i){ 
    326326        var theform=document.forms["search"]; 
     
    330330} 
    331331 
    332 // Pass the Sort Parameters and subit the form 
     332// Pass the Sort Parameters and submit the form 
    333333function doDescSort(){ 
    334334        theform=document.forms["search"]; 
     
    364364 
    365365 
    366 function perfromToSelection(option){ 
     366function performToSelection(option){ 
    367367 
    368368        var thereset=getObjectFromID("reset"); 
     
    582582        var searchname=getObjectFromID("LSSelectedSearch"); 
    583583        var sqlbox=getObjectFromID("LSSQL"); 
    584         var reultbox=getObjectFromID("LSResults"); 
     584        var resultbox=getObjectFromID("LSResults"); 
    585585        if (theselect.value=="NA"){ 
    586586                loadbutton.disabled=true; 
     
    589589                sqlbox.value=""; 
    590590        } else { 
    591                 reultbox.innerHTML="<img src=\""+base+"common/image/spinner.gif\" alt=\"0\" width=\"16\" height=\"16\" align=\"absmiddle\"> <strong>Loading...</strong>"; 
     591                resultbox.innerHTML="<img src=\""+base+"common/image/spinner.gif\" alt=\"0\" width=\"16\" height=\"16\" align=\"absmiddle\"> <strong>Loading...</strong>"; 
    592592                var theURL=base+"loadsearch.php?cmd=getsearch&id="+theselect.value; 
    593593                loadXMLDoc(theURL,null,false); 
     
    603603                else 
    604604                        deletebutton.disabled=true; 
    605                 reultbox.innerHTML=""; 
     605                resultbox.innerHTML=""; 
    606606        } 
    607607} 
     
    615615function LSDeleteSearch(base){ 
    616616        var theselect=getObjectFromID("LSList"); 
    617         var reultbox=getObjectFromID("LSResults"); 
    618  
    619         reultbox.innerHTML="<img src=\""+base+"common/image/spinner.gif\" alt=\"0\" width=\"16\" height=\"16\" align=\"absmiddle\"> <strong>Loading...</strong>"; 
     617        var resultbox=getObjectFromID("LSResults"); 
     618 
     619        resultbox.innerHTML="<img src=\""+base+"common/image/spinner.gif\" alt=\"0\" width=\"16\" height=\"16\" align=\"absmiddle\"> <strong>Loading...</strong>"; 
    620620        var theURL=base+"loadsearch.php?cmd=deletesearch&id="+theselect.value; 
    621621        loadXMLDoc(theURL,null,false); 
    622622        if(req.responseText=="success"){ 
    623                 reultbox.innerHTML=""; 
     623                resultbox.innerHTML=""; 
    624624                theselect.options[theselect.selectedIndex]=null; 
    625625                if(theselect.options.length==1){ 
  • trunk/phpbms/common/javascript/smartsearch.js

    r493 r643  
    6868 
    6969                } else { 
    70                         //it's possible they hit the down, up arrow, or the return button 
     70                        //it is possible they hit the down, up arrow, or the return button 
    7171 
    7272                        var key = e.event().keyCode; 
phpBMS vulnerability assesment provided by Orvant Inc. Copyright © 2010 Kreotek, LLC. All Rights reserved.