- Timestamp:
- 01/21/10 10:47:19 (2 years ago)
- Location:
- trunk/phpbms
- Files:
-
- 6 modified
-
advancedsort.php (modified) (3 diffs)
-
common/javascript/queryfunctions.js (modified) (1 diff)
-
common/javascript/smartsearch.js (modified) (1 diff)
-
install/update.js (modified) (1 diff)
-
install/update.php (modified) (3 diffs)
-
install/update_include.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/advancedsort.php
r702 r769 50 50 $this->tabledefid = $tabledefid; 51 51 $this->tabledefuuid = getUuid($this->db, "tbld:5c9d645f-26ab-5003-b98e-89e9049f8ac3", ((int) $tabledefid)); 52 52 53 53 $querystatement = " 54 54 SELECT … … 59 59 `uuid` = '".$this->tabledefuuid."' 60 60 "; 61 61 62 62 $queryresult = $this->db->query($querystatement); 63 63 64 64 $therecord = $this->db->fetchArray($queryresult); 65 65 $this->prefix = $therecord["prefix"]; … … 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 -
trunk/phpbms/common/javascript/queryfunctions.js
r728 r769 38 38 window.onload=function(){ 39 39 40 var sqlbttn=getObjectFromID("showSQLButton"); ;40 var sqlbttn=getObjectFromID("showSQLButton"); 41 41 42 42 if(sqlbttn){ -
trunk/phpbms/common/javascript/smartsearch.js
r703 r769 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; -
trunk/phpbms/install/update.js
r548 r769 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 { -
trunk/phpbms/install/update.php
r712 r769 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> … … 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. … … 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> -
trunk/phpbms/install/update_include.php
r714 r769 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);