|
### Eclipse Workspace Patch 1.0
|
|
#P igeworkspace42
|
|
Index: typo3/sysext/version/mod2/index.php
|
|
===================================================================
|
|
--- typo3/sysext/version/mod2/index.php (revision 290)
|
|
+++ typo3/sysext/version/mod2/index.php (working copy)
|
|
@@ -332,7 +332,7 @@
|
|
$prevUserRecords = t3lib_BEfunc::getUserNames('username, uid, email','AND uid IN ('.str_replace('be_users_','',$workspaceRec['adminusers']).')');
|
|
if(!empty($prevUserRecords) && is_array($prevUserRecords)) {
|
|
foreach($prevUserRecords as $prevUserUid => $prevUserRecord) {
|
|
- $content .= '<br /><input type="checkbox" name="PrevStageRecipient[]" value="'.$prevUserRecord['email'].'"> '.$prevUserRecord['email'].'';
|
|
+ $content .= '<br /><input type="checkbox" class="checkbox" name="PrevStageRecipient[]" value="'.$prevUserRecord['email'].'"> '.$prevUserRecord['email'].'';
|
|
}
|
|
} else {
|
|
$content .= '<span style="color: red;">There are no recipients defined for this stage.</span>';
|
|
@@ -341,7 +341,7 @@
|
|
$prevUserRecords = t3lib_BEfunc::getUserNames('username, uid, email','AND uid IN ('.$prevStageRecord['responsible_persons'].')');
|
|
if(!empty($prevUserRecords) && is_array($prevUserRecords)) {
|
|
foreach($prevUserRecords as $prevUserUid => $prevUserRecord) {
|
|
- $content .= '<br /><input type="checkbox" name="PrevStageRecipient[]" value="'.$prevUserRecord['email'].'"> '.$prevUserRecord['email'].'';
|
|
+ $content .= '<br /><input type="checkbox" class="checkbox" name="PrevStageRecipient[]" value="'.$prevUserRecord['email'].'"> '.$prevUserRecord['email'].'';
|
|
}
|
|
} else {
|
|
$content .= '<span style="color: red;">There are no recipients defined for this stage.</span>';
|
|
@@ -378,7 +378,7 @@
|
|
$nextUserRecords = t3lib_BEfunc::getUserNames('username, uid, email','AND uid IN ('.str_replace('be_users_','',$workspaceRec['adminusers']).')');
|
|
if(!empty($nextUserRecords) && is_array($nextUserRecords)) {
|
|
foreach($nextUserRecords as $nextUserUid => $nextUserRecord) {
|
|
- $content .= '<br /><input type="checkbox" name="NextStageRecipient[]" value="'.$nextUserRecord['email'].'"> '.$nextUserRecord['email'].'';
|
|
+ $content .= '<br /><input type="checkbox" class="checkbox" name="NextStageRecipient[]" value="'.$nextUserRecord['email'].'"> '.$nextUserRecord['email'].'';
|
|
}
|
|
} else {
|
|
$content .= '<span style="color: red;">There are no recipients defined for this stage.</span>';
|
|
@@ -387,7 +387,7 @@
|
|
$nextUserRecords = t3lib_BEfunc::getUserNames('username, uid, email','AND uid IN ('.$nextStageRecord['responsible_persons'].')');
|
|
if(!empty($nextUserRecords) && is_array($nextUserRecords)) {
|
|
foreach($nextUserRecords as $nextUserUid => $nextUserRecord) {
|
|
- $content .= '<br /><input type="checkbox" name="NextStageRecipient[]" value="'.$nextUserRecord['email'].'"> '.$nextUserRecord['email'].'';
|
|
+ $content .= '<br /><input type="checkbox" class="checkbox" name="NextStageRecipient[]" value="'.$nextUserRecord['email'].'"> '.$nextUserRecord['email'].'';
|
|
}
|
|
} else {
|
|
$content .= '<span style="color: red;">There are no recipients defined for this stage.</span>';
|