templates/de/html/admin/admin_list_surfbar_actions_row.tpl -text
templates/de/html/admin/admin_list_surfbar_urls.tpl -text
templates/de/html/admin/admin_list_surfbar_urls_row.tpl -text
+templates/de/html/admin/admin_list_task_ext_rows.tpl -text
templates/de/html/admin/admin_list_task_rows.tpl -text
templates/de/html/admin/admin_list_transfer.tpl -text
templates/de/html/admin/admin_list_transfer_row.tpl -text
templates/de/html/admin/admin_overview_header.tpl -text
templates/de/html/admin/admin_overview_header_task.tpl -text
templates/de/html/admin/admin_overview_list.tpl -text
+templates/de/html/admin/admin_overview_list_ext_rows.tpl -text
templates/de/html/admin/admin_overview_list_rows.tpl -text
templates/de/html/admin/admin_overview_row.tpl -text
templates/de/html/admin/admin_overview_task.tpl -text
(http://www.simplemail.de)
- AndreasJung aus dem MXChange-Community Forum wegen zahlreicher Bugmeldungen.
(http://www.onlinewerbebombe.de)
-- Der User profi-concept aus meinem Forum hat mir Patches fuer die config.php
- zugesandt, die Probleme unter Windows gefixt haben.
+- Der User profi-concept aus meinem Forum hat mir sehr viele gute Patches zur
+ Verfuegung gestellt (http://www.stelzi.net)
Websites / Programmierer / etc.:
- SF.net: Hosten meine Projektdateien (nur Archive)
define('SERVER_URL', "http://www.mxchange.org");
// This current patch level
-define('CURR_SVN_REVISION', "531");
+define('CURR_SVN_REVISION', "532");
// Take a prime number which is long (if you know a longer one please try it out!)
define('_PRIME', 591623);
// Referal points found so add them and set line(s) to completed='Y'
$points += $ref;
$result_ref = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_doubler SET completed='Y' WHERE refid=%s AND completed='N' AND is_ref='Y'",
- array(bigintval($uid)), __FILE__, __LINE__);
+ array(bigintval($uid)), __FILE__, __LINE__);
} else {
// No referal points found
$ref = 0;
// Set entry as "payed"
$result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_doubler SET completed='Y' WHERE id=%s LIMIT 1",
- array(bigintval($id)), __FILE__, __LINE__);
+ array(bigintval($id)), __FILE__, __LINE__);
$OK = false;
// Check for jackpot inclusion in doubling process
} // END - if
}
+// Destroys the admin session
+function DESTROY_ADMIN_SESSION () {
+ // Kill maybe existing session variables including array elements
+ set_session('admin_login' , "");
+ set_session('admin_md5' , "");
+ set_session('admin_last' , "");
+ set_session('admin_to' , "");
+
+ // Destroy session and return status
+ return @session_destroy();
+}
+
//////////////////////////////////////////////////
// //
// AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS //
define('ADMIN_TASK_SUBJECT', "Aufgabenbetreff");
define('ADMIN_TASK_TEXT', "Aufgabentext");
define('ADMIN_REGISTER_EXTENSION', "Registrieren");
+define('ADMIN_REGISTER_EXTENSION_TITLE', "Erweiterung direkt registrieren");
define('ADMIN_SELECTED_TASKS_ASSIGN', "Zum Bearbeiten ausgewählte Tasks");
define('ADMIN_REG_FAILED_INVALID', "Registrierung fehlgeschlagen: Ungütige ID übermittelt!");
define('ADMIN_REG_FAILED_ID_404', "Registrierung fehlgeschlagen: Erweiterung-ID nicht auffindbar!");
define('RAND_CONFIRMED', "Bestätigt f. Zufalls-Ref");
define('LOCK_REASON', "Sperrgrund");
define('LOCK_TIMESTAMP', "Sperrzeitpunkt");
+define('EXTENSION', "Erweiterung");
define('MEMBER_MAIL_BONUS_CONFIRMED_ON', "Sie haben diese Bonusmail <span class=\"data\">%s</span> bestätigt.");
define('MEMBER_MAIL_NORMAL_CONFIRMED_ON', "Sie haben diese Klickmail <span class=\"data\">%s</span> bestätigt.");
if ((empty($GLOBALS['action'])) && ($check == "admin_only")) {
// Redirect to right URL
LOAD_URL("modules.php?module=admin&action=login");
-}
+} // END - if
// Load include file
require_once(PATH."inc/modules/admin/admin-inc.php");
case "404": // Administrator login not found
$_POST['ok'] = $ret;
$ret = ADMIN_NOT_FOUND;
+ DESTROY_ADMIN_SESSION();
break;
case "pass": // Wrong password
$_POST['ok'] = $ret;
$ret = WRONG_PASS." [<A href=\"".URL."/modules.php?module=admin&reset_pass=1\">".ADMIN_RESET_PASS."</A>]\n";
+ DESTROY_ADMIN_SESSION();
break;
}
}
}
} elseif (isset($_GET['logout'])) {
// Only try to remove cookies
- if (set_session("admin_login", "") && set_session("admin_md5", "") && set_session("admin_last", "") && set_session("admin_to", "")) {
- // Also remove array elements
- set_session('admin_login', "");
- set_session('admin_md5' , "");
- set_session('admin_last' , "");
- set_session('admin_to' , "");
-
- // Destroy session
- @session_destroy();
-
+ if (DESTROY_ADMIN_SESSION()) {
// Load logout template
if (isset($_GET['register'])) {
// Secure input
case "404": // Administrator login not found
$_POST['ok'] = $ret;
+ DESTROY_ADMIN_SESSION();
ADD_FATAL(ADMIN_NOT_FOUND);
break;
case "pass": // Wrong password
$_POST['ok'] = $ret;
+ DESTROY_ADMIN_SESSION();
ADD_FATAL(WRONG_PASS);
break;
}
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf(."%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
} else {
+ // "what file" not found
ADD_FATAL(ADMIN_404_ACTION_1.$GLOBALS['what'].ADMIN_404_ACTION_2);
}
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
ADD_DESCR("admin", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/admin/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the admin action module
include($INC);
'created' => MAKE_DATETIME($created, "2")
);
- // Load row template
- LOAD_TEMPLATE("admin_overview_list_rows", false, $content);
+ // Do we have extension task?
+ if ($type == "EXTENSION") {
+ // Load extension row template
+ LOAD_TEMPLATE("admin_overview_list_ext_rows", false, $content);
+ } else {
+ // Load default row template
+ LOAD_TEMPLATE("admin_overview_list_rows", false, $content);
+ }
// Switch color
$SW = 3 - $SW;
$infos = substr($subj, 1, strpos($subj, ":") - 1);
break;
}
- if ($uid > 0)
- {
+
+ // Member assigned with task?
+ if ($uid > 0) {
// Member found otherwise it's a system task
$uid = ADMIN_USER_PROFILE_LINK($uid);
- }
- else
- {
+ } else {
+ // Is a system task!
$uid = "<I>".ADMIN_IS_SYSTEM_TASK."</I>";
}
+
+ // Prepare content
$content = array(
'sw' => $SW,
'id' => $id,
'type' => $type_out,
'created' => MAKE_DATETIME($created, "2")
);
- LOAD_TEMPLATE("admin_list_task_rows", false, $content);
+
+ // Do we have an extension task?
+ if ($type == "EXTENSION") {
+ // Load extension row template
+ LOAD_TEMPLATE("admin_list_task_ext_rows", false, $content);
+ } else {
+ // Load default row template
+ LOAD_TEMPLATE("admin_list_task_rows", false, $content);
+ }
+
+ // Switch colors
$SW = 3 - $SW;
}
if (GET_ACTION("guest", $GLOBALS['what']) == "admin") {
// Only when one admin link is clicked...
- $INC = sprintf("%sinc/modules/guest/what-%s.php", PATH, $GLOBALS['what']);
+ $INC = sprintf("%sinc/modules/guest/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the guest action module
include($INC);
ADD_DESCR("guest", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/guest/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/guest/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
$IS_VALID = WHAT_IS_VALID(GET_ACTION("guest", $GLOBALS['what']), $GLOBALS['what'], "guest");
if ((FILE_READABLE($INC)) && ($IS_VALID)) {
ADD_DESCR("guest", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/guest/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/guest/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the guest action module
include($INC);
ADD_DESCR("guest", __FILE__);
// Load the include file
-$INC = sprintf("%sinc/modules/guest/what-%s.php", PATH, $GLOBALS['what']);
+$INC = sprintf("%sinc/modules/guest/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC)) {
// Ok, we finally load the guest action module
include($INC);
ADD_DESCR("member", __FILE__);
// Load the include file
-$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, $GLOBALS['what']);
+$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC_WHAT)) {
// Ok, we finally load the member action module
include_once($INC_WHAT);
ADD_DESCR("member", __FILE__);
// Load the include file
-$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, $GLOBALS['what']);
+$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC_WHAT)) {
// Ok, we finally load the member action module
include_once($INC_WHAT);
ADD_DESCR("member", __FILE__);
// Load the include file
-$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, $GLOBALS['what']);
+$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC_WHAT)) {
// Ok, we finally load the member action module
include_once($INC_WHAT);
ADD_DESCR("member", __FILE__);
// Load the include file
-$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, $GLOBALS['what']);
+$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC_WHAT)) {
// Ok, we finally load the member action module
include_once($INC_WHAT);
ADD_DESCR("member", __FILE__);
// Load the include file
-$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, $GLOBALS['what']);
+$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC_WHAT)) {
// Ok, we finally load the member action module
include_once($INC_WHAT);
ADD_DESCR("member", __FILE__);
// Load the include file
-$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, $GLOBALS['what']);
+$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC_WHAT)) {
// Ok, we finally load the member action module
include_once($INC_WHAT);
ADD_DESCR("member", __FILE__);
// Load the include file
-$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, $GLOBALS['what']);
+$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC_WHAT)) {
// Ok, we finally load the member action module
include_once($INC_WHAT);
ADD_DESCR("member", __FILE__);
// Load the include file
-$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, $GLOBALS['what']);
+$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC_WHAT)) {
// Ok, we finally load the member action module
include_once($INC_WHAT);
ADD_DESCR("member", __FILE__);
// Load the include file
-$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, $GLOBALS['what']);
+$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC_WHAT)) {
// Ok, we finally load the member action module
include_once($INC_WHAT);
ADD_DESCR("member", __FILE__);
// Load the include file
-$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, $GLOBALS['what']);
+$INC_WHAT = sprintf("%sinc/modules/member/what-%s.php", PATH, SQL_ESCAPE($GLOBALS['what']));
if (FILE_READABLE($INC_WHAT)) {
// Ok, we finally load the member action module
include_once($INC_WHAT);
case "mem_only":
case "done":
// Construct module name
- define('__MODULE', sprintf("%sinc/modules/%s.php", PATH, $GLOBALS['module']));
+ define('__MODULE', sprintf("%sinc/modules/%s.php", PATH, SQL_ESCAPE($GLOBALS['module'])));
// Does the module exists on local file system?
if ((FILE_READABLE(__MODULE)) && (sizeof($FATAL) == 0)) {
--- /dev/null
+<TR>
+ <TD class="switch_sw$content[sw] bottom2 right2 left2" align="center">
+ <INPUT type="checkbox" name="task[$content[id]]" value="1" class="admin_normal" />
+ </TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[admin]</TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center"><A title="{--ADMIN_REGISTER_EXTENSION_TITLE--}" href="{!URL!}/modules.php?module=admin&what=extensions&reg_ext=$content[id]">{--ADMIN_REGISTER_EXTENSION--}</A></TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[infos]</TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[uid]</TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[type]</TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[created]]</TD>
+</TR>
<TR>
<TD class="switch_sw$content[sw] bottom2 right2 left2" align="center">
- <INPUT type="checkbox" name="task[$content[id]]" value="1"
- class="admin_normal"></TD>
+ <INPUT type="checkbox" name="task[$content[id]]" value="1" class="admin_normal" />
+ </TD>
<TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[admin]</TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">---</TD>
<TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[infos]</TD>
<TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[uid]</TD>
<TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[type]</TD>
<TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[created]]</TD>
-</TR>
\ No newline at end of file
+</TR>
<TR>
- <TD colspan="6" align="center"
- class="admin_footer bottom2 left2 right2"><INPUT type="reset"
- value="{--ADMIN_UNSELECT_ALL--}" class="admin_reset" /> <INPUT
- type="submit" name="assign" value="{--ADMIN_ASSIGN_TASKS--}"
- class="admin_submit" /> <INPUT type="submit"
- name="unassign" value="{--ADMIN_UNASSIGN_TASKS--}"
- class="admin_submit" /> <INPUT type="submit" name="redir"
- value="{--ADMIN_REDIRECT_TASKS--}" class="admin_submit" />
- <INPUT type="submit" name="del" value="{--ADMIN_DELETE_ENTRIES--}"
- class="admin_delete" /></TD>
+ <TD colspan="7" align="center" class="admin_footer bottom2 left2 right2">
+ <INPUT type="reset" value="{--ADMIN_UNSELECT_ALL--}" class="admin_reset" />
+ <INPUT type="submit" name="assign" value="{--ADMIN_ASSIGN_TASKS--}" class="admin_submit" />
+ <INPUT type="submit" name="unassign" value="{--ADMIN_UNASSIGN_TASKS--}" class="admin_submit" />
+ <INPUT type="submit" name="redir" value="{--ADMIN_REDIRECT_TASKS--}" class="admin_submit" />
+ <INPUT type="submit" name="del" value="{--ADMIN_DELETE_ENTRIES--}" class="admin_delete" />
+ </TD>
</TR>
</TABLE>
</DIV>
-</FORM>
\ No newline at end of file
+</FORM>
<TR>
- <TD colspan="6" align="center"
- class="admin_footer bottom2 left2 right2"><INPUT type="reset"
- value="{--ADMIN_UNSELECT_ALL--}" class="admin_reset" /> <INPUT
- type="submit" name="assign" value="{--ADMIN_ASSIGN_TASKS--}"
- class="admin_submit" /> <INPUT type="submit"
- name="unassign" value="{--ADMIN_UNASSIGN_TASKS--}"
- class="admin_submit" /> <INPUT type="submit" name="redir"
- value="{--ADMIN_REDIRECT_TASKS--}" class="admin_submit" />
- <INPUT type="submit" name="del" value="{--TASK_ADMIN_DELETE_ENTRIES--}"
- class="admin_delete" /></TD>
+ <TD colspan="7" align="center" class="admin_footer bottom2 left2 right2">
+ <INPUT type="reset" value="{--ADMIN_UNSELECT_ALL--}" class="admin_reset" />
+ <INPUT type="submit" name="assign" value="{--ADMIN_ASSIGN_TASKS--}" class="admin_submit" />
+ <INPUT type="submit" name="unassign" value="{--ADMIN_UNASSIGN_TASKS--}" class="admin_submit" />
+ <INPUT type="submit" name="redir" value="{--ADMIN_REDIRECT_TASKS--}" class="admin_submit" />
+ <INPUT type="submit" name="del" value="{--TASK_ADMIN_DELETE_ENTRIES--}" class="admin_delete" />
+ </TD>
</TR>
</TABLE>
</FORM>
-<DIV class="admin_note"><STRONG>{--TASK_DELETE_MODE_NOTE--}</STRONG>
+<DIV class="admin_note">
+ <STRONG>{--TASK_DELETE_MODE_NOTE--}</STRONG>
</DIV>
-<FORM action="{!URL!}/modules.php?module=admin&action=login"
- method="POST" style="margin-bottom: 0px">
-<TABLE border="0" cellspacing="0" cellpadding="0" width="95%"
- align="center" class="admin_table">
+<FORM action="{!URL!}/modules.php?module=admin&action=login" method="POST" style="margin-bottom: 0px">
+<TABLE border="0" cellspacing="0" cellpadding="0" width="95%" align="center" class="admin_table">
<TR>
- <TD colspan="6" align="center"
- class="admin_task_header top2 left2 right2"><STRONG
- class="admin_welcome">{--ADMIN_TASK_SYSTEM_WELCOME--}</STRONG></TD>
+ <TD colspan="7" align="center" class="admin_task_header top2 left2 right2">
+ <STRONG class="admin_welcome">{--ADMIN_TASK_SYSTEM_WELCOME--}</STRONG>
+ </TD>
</TR>
<TR>
<TD align="center" class="top2 bottom2 right2 left2 admin_header"><STRONG>{--ID_SELECT--}</STRONG></TD>
<TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_ASSIGNED_ADMIN--}</STRONG></TD>
+ <TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_REGISTER_EXTENSION--}</STRONG></TD>
<TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_TASK_INFOS--}</STRONG></TD>
<TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_MEMBER_UID--}</STRONG></TD>
<TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_TASK_TYPE--}</STRONG></TD>
<TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_TASK_CREATED--}</STRONG></TD>
- </TR>
\ No newline at end of file
+ </TR>
-<FORM
- action="{!URL!}/modules.php?module=admin&what=list_task&type=$content[type]"
- method="POST" style="margin-bottom: 0px">
-<TABLE border="0" cellspacing="0" cellpadding="0" width="95%"
- align="center" class="admin_table">
+<FORM action="{!URL!}/modules.php?module=admin&what=list_task&type=$content[type]" method="POST" style="margin-bottom: 0px">
+<TABLE border="0" cellspacing="0" cellpadding="0" width="95%" align="center" class="admin_table">
<TR>
- <TD colspan="6" align="center"
- class="admin_task_header top2 left2 right2"><STRONG
- class="admin_welcome">$content[message]</STRONG></TD>
+ <TD colspan="7" align="center" class="admin_task_header top2 left2 right2">
+ <STRONG class="admin_welcome">$content[message]</STRONG>
+ </TD>
</TR>
<TR>
<TD align="center" class="top2 bottom2 right2 left2 admin_header"><STRONG>{--ID_SELECT--}</STRONG></TD>
<TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_ASSIGNED_ADMIN--}</STRONG></TD>
+ <TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_REGISTER_EXTENSION--}</STRONG></TD>
<TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_TASK_INFOS--}</STRONG></TD>
<TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_MEMBER_UID--}</STRONG></TD>
<TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_TASK_TYPE--}</STRONG></TD>
<TD align="center" class="top2 bottom2 right2 admin_header"><STRONG>{--ADMIN_TASK_CREATED--}</STRONG></TD>
- </TR>
\ No newline at end of file
+ </TR>
--- /dev/null
+<TR>
+ <TD class="switch_sw$content[sw] bottom2 right2 left2" align="center">
+ <INPUT type="checkbox" name="task[$content[id]]" value="1" class="admin_normal" />
+ </TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[admin]</TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center"><A title="{--ADMIN_REGISTER_EXTENSION_TITLE--}" href="{!URL!}/modules.php?module=admin&what=extensions&reg_ext=$content[id]">{--ADMIN_REGISTER_EXTENSION--}</A></TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[infos]</TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[uid]</TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[type]</TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[created]]</TD>
+</TR>
<TR>
<TD class="switch_sw$content[sw] bottom2 right2 left2" align="center">
- <INPUT type="checkbox" name="task[$content[id]]" value="1"
- class="admin_normal"></TD>
+ <INPUT type="checkbox" name="task[$content[id]]" value="1" class="admin_normal" />
+ </TD>
<TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[admin]</TD>
+ <TD class="switch_sw$content[sw] bottom2 right2" align="center">---</TD>
<TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[infos]</TD>
<TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[uid]</TD>
<TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[type]</TD>
<TD class="switch_sw$content[sw] bottom2 right2" align="center">$content[created]]</TD>
-</TR>
\ No newline at end of file
+</TR>