|
From: <tu...@us...> - 2013-10-25 03:36:45
|
Revision: 6367
http://sourceforge.net/p/web-erp/reponame/6367
Author: turbopt
Date: 2013-10-25 03:36:42 +0000 (Fri, 25 Oct 2013)
Log Message:
-----------
Minor tag other formatting corrections.
Modified Paths:
--------------
trunk/MailingGroupMaintenance.php
trunk/doc/Change.log
Modified: trunk/MailingGroupMaintenance.php
===================================================================
--- trunk/MailingGroupMaintenance.php 2013-10-22 15:05:54 UTC (rev 6366)
+++ trunk/MailingGroupMaintenance.php 2013-10-25 03:36:42 UTC (rev 6367)
@@ -137,7 +137,7 @@
}
if(!isset($_GET['Edit'])){//display the input form
?>
- <form id="MailGroups" action="<?php echo htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8'); ?>" method="post" />
+ <form id="MailGroups" action="<?php echo htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8'); ?>" method="post">
<input type="hidden" name="FormID" value="<?php echo $_SESSION['FormID']; ?>" />
<label for="MailGroup"><?php echo _('Mail Group'); ?></label>
<input type="text" required="required" autofocus="autofocus" name="MailGroup" maxlength="100" size="20" />
@@ -176,7 +176,7 @@
<tr><td><?php echo $myrow['groupname']; ?></td>
<td><?php echo '<a href="'.htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8').'?GroupId='.$myrow['id'].'&Edit=1&GroupName='.$myrow['groupname'].'" >' . _('Edit') . '</a>'; ?></td>
- <td><?php echo '<a href="'.htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8').'?Id='.$myrow['id'].'&Delete=1" onclick="return confirm(\'' ._('Are you sure you wish to delete this group?').'\');">' . _('Delete'); ?></a></td>
+ <td><?php echo '<a href="'.htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8').'?Id='.$myrow['id'].'&Delete=1" onclick="return confirm(\'' ._('Are you sure you wish to delete this group?').'\');">' . _('Delete') . '</a>'; ?></td>
</tr>
<?php
@@ -209,11 +209,13 @@
?>
<div class="centre"><?php echo _('Current Mail Group').' : '.$GroupName; ?></div>
- <div class="centre"><a href="<?php echo htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8'); ?>" /><?php echo _('View All Groups'); ?></a>
+ <div class="centre"><a href="<?php echo htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8'); ?>"><?php echo _('View All Groups'); ?></a></div>
<table class="selection">
- <th colspan="3"><div class="centre"><?php echo _('Assigned Users'); ?></div></th>
- <th colspan="3"><div class="centre"><?php echo _('Available Users'); ?></div></th>
+ <tr>
+ <th colspan="3"><?php echo _('Assigned Users'); ?></th>
+ <th colspan="3"><?php echo _('Available Users'); ?></th>
+ </tr>
<?php
$k = 0;
while($myrow=DB_fetch_array($result)){
@@ -233,7 +235,7 @@
?>
<td><?php echo $myrow['userid']; ?></td>
<td><?php echo $myrow['realname']; ?></td>
- <td><a href="<?php echo htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8').'?UserId='.$myrow['userid'].'&GroupName='.$GroupName.'&Remove=1&GroupId='.$GroupId; ?>" onclick="return confirm('" . _('Are you sure you wish to remove this user from this mail group?'). "); " /><?php echo _('Remove'); ?></a></td>
+ <td><a href="<?php echo htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8').'?UserId='.$myrow['userid'].'&GroupName='.$GroupName.'&Remove=1&GroupId='.$GroupId . '" onclick="return confirm(\'' . _('Are you sure you wish to remove this user from this mail group?') . '\');'; ?>"><?php echo _('Remove'); ?></a></td>
<td> </td>
<td> </td>
<td> </td>
@@ -245,7 +247,7 @@
<td> </td>
<td><?php echo $myrow['userid']; ?></td>
<td><?php echo $myrow['realname']; ?></td>
- <td><a href="<?php echo htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8').'?UserId='.$myrow['userid'].'&Add=1&GroupName='.$GroupName.'&GroupId='.$GroupId; ?>" /><?php echo _('Add'); ?></a></td>
+ <td><a href="<?php echo htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8').'?UserId='.$myrow['userid'].'&Add=1&GroupName='.$GroupName.'&GroupId='.$GroupId; ?>"><?php echo _('Add'); ?></a></td>
<?php
}
Modified: trunk/doc/Change.log
===================================================================
--- trunk/doc/Change.log 2013-10-22 15:05:54 UTC (rev 6366)
+++ trunk/doc/Change.log 2013-10-25 03:36:42 UTC (rev 6367)
@@ -1,4 +1,5 @@
webERP Change Log
+24/10/13 MailingGroupMaintenance.php, minor tag and other formatting corrections.
20/10/13 icedlava: Add StockClone.php script to create a new item with the same properties, image, cost, purchasing and pricing data as the selected item, and allow modification of image and general item details before cloning.
18/10/13 Paul T: ManualSecuritySchema.html, add missing tr tags, reduced doubled-closing td tags to one, and changed & to & for HTML.
18/10/13 Paul T: ManualInventory.html, add bracket to complete closing h3 tag.
|