Ticket #407: problems.patch
| File problems.patch, 4.6 KB (added by a.tangemann@…, 2 years ago) |
|---|
-
advancedsort.php
106 106 $numrows = $this->db->numRows($queryresult); 107 107 108 108 ?> 109 <select id="sortSavedList" name="sortSavedList" <?php if ($numrows<1) echo "disabled" ?> size="10" style="width:99%" onchange="sortSavedSelect(this)" />109 <select id="sortSavedList" name="sortSavedList" <?php if ($numrows<1) echo "disabled" ?> size="10" style="width:99%" onchange="sortSavedSelect(this)"> 110 110 <?php 111 111 112 112 if($numrows<1){ -
common/javascript/queryfunctions.js
37 37 */ 38 38 window.onload=function(){ 39 39 40 var sqlbttn=getObjectFromID("showSQLButton"); ;40 var sqlbttn=getObjectFromID("showSQLButton"); 41 41 42 42 if(sqlbttn){ 43 43 var sqlDivs = new Array(); -
common/javascript/smartsearch.js
504 504 connect(smartSearches[i], "onkeyup", smartSearch.changeDisplay); 505 505 connect(smartSearches[i], "onblur", smartSearch.blurDisplay); 506 506 507 varssID = smartSearches[i].id.substr(3);507 ssID = smartSearches[i].id.substr(3); 508 508 509 509 smartSearch.displayValue[ssID] = smartSearches[i].value; 510 510 smartSearch.committedDisplayValue[ssID] = smartSearches[i].value; -
install/update.js
12 12 if(response.success === true){ 13 13 14 14 noDebug.className = "success"; 15 noDebug.innerHTML = "Core Program Updated Succe fully";15 noDebug.innerHTML = "Core Program Updated Successfully"; 16 16 17 17 } else { 18 18 -
install/update.php
129 129 130 130 <h1>Preparing For Update</h1> 131 131 <p> 132 Before updating, There are several steps to take and insure that backup runs smoothly.132 Before updating, there are several steps to take and insure that backup runs smoothly. 133 133 </p> 134 134 <ul> 135 135 <li> … … 223 223 <h1>Update Modules</h1> 224 224 225 225 <p> 226 To install a module that is not currently installed, wait un itl the update process226 To install a module that is not currently installed, wait until the update process 227 227 has completed successfully. Then run the installation script and skip to the "install 228 228 modules" section. 229 229 </p> … … 301 301 <h3>Payment Information Encryption</h3> 302 302 <p> 303 303 If you store sensitive payment information such as credit card 304 numbers make sure to enable the encr ption option in the configuration page304 numbers make sure to enable the encryption option in the configuration page 305 305 underneath the BMS module section. You will also need to create and link 306 306 to an external file on the server that contains the encryption key. Typically, 307 enc yrption key files are text files containing a 64-128 character hash.307 encryption key files are text files containing a 64-128 character hash. 308 308 </p> 309 309 </li> 310 310 -
install/update_include.php
81 81 $querystatement = "SELECT VERSION() AS ver"; 82 82 $queryresult = $this->db->query($querystatement); 83 83 if($this->db->error) 84 $error = new appError(-425,"Could not retrieve mysql vers on. ","Database Error", true, true, false);84 $error = new appError(-425,"Could not retrieve mysql version. ","Database Error", true, true, false); 85 85 86 86 $therecord = $this->db->fetchArray($queryresult); 87 87