Changeset 244
- Timestamp:
- 21/06/06 17:13:21 (2 years ago)
- Files:
-
- Branches/2.1/core/js/Saving.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Branches/2.1/core/js/Saving.js
r226 r244 53 53 // Locate the storeArea div's 54 54 var posOpeningDiv = original.indexOf(startSaveArea); 55 var posClosingDiv = original.lastIndexOf(endSaveArea); 55 var limitClosingDiv = original.indexOf("<!--POST-BODY-START--"+">"); 56 var posClosingDiv = original.lastIndexOf(endSaveArea,limitClosingDiv == -1 ? original.length : limitClosingDiv); 56 57 if((posOpeningDiv == -1) || (posClosingDiv == -1)) 57 58 {