2008-01-08 Benjamin Mack <mack@xnos.org>
+ * (bugfix) Followup for #1678: limit to language; made the variable names better (Thanks to Helmut Hummel)
* (bugfix) Fixed #7101: CType bullets not rendered correctly (thanks to Steffen Kamper)
* (bugfix) Fixed #6883: Added missing functions in typo3/template.php
* Fixed bug #6961: Errors in link creation popup window
-2007-01-06 Oliver Hader <oh@inpublica.de>
+2008-01-06 Oliver Hader <oh@inpublica.de>
* Fixed bug #5994: IRRE - RTEhtmlarea is not show in child records if parent has no RTE
}
// Checking if there is anything else disallowing moving the record by checking if editing is allowed
- $editAccess = $this->BE_USER->recordEditAccessInternals($table,$uid);
+ $mayEditAccess = $this->BE_USER->recordEditAccessInternals($table,$uid);
// If moving is allowed, begin the processing:
- if ($editAccess) {
+ if ($mayEditAccess) {
if ($mayMoveAccess) {
if ($mayInsertAccess) {
global $TCA;
// Checking if there is anything else disallowing deleting the record by checking if editing is allowed
- $editAccess = $this->BE_USER->recordEditAccessInternals($table,$uid);
+ $mayEditAccess = $this->BE_USER->recordEditAccessInternals($table,$uid);
$uid = intval($uid);
if ($TCA[$table] && $uid) {
- if ($editAccess) {
+ if ($mayEditAccess) {
if ($noRecordCheck || $this->doesRecordExist($table,$uid,'delete')) {
$this->clear_cache($table,$uid); // clear cache before deleting the record, else the correct page cannot be identified by clear_cache