Changeset 865 in ExiteCMS
- Timestamp:
- 10/03/07 21:40:33 (4 years ago)
- Location:
- modules/common
- Files:
-
- 33 edited
-
ad_side_panel/php-files/modules/ad_side_panel/ad_side_panel.php (modified) (1 diff)
-
ad_side_panel/php-files/modules/ad_side_panel/module_installer.php (modified) (1 diff)
-
birthday_panel/php-files/modules/birthday_panel/birthday_panel.php (modified) (1 diff)
-
birthday_panel/php-files/modules/birthday_panel/module_installer.php (modified) (1 diff)
-
donations/php-files/modules/donations/admin_panel.php (modified) (1 diff)
-
donations/php-files/modules/donations/module_installer.php (modified) (1 diff)
-
donations/php-files/modules/donations/templates/modules.donations.admin_panel.tpl (modified) (8 diffs)
-
download_bars_panel/php-files/modules/download_bars_panel/download_bars_panel.php (modified) (1 diff)
-
forum_threads_list_panel/php-files/modules/forum_threads_list_panel/forum_threads_list_panel.php (modified) (1 diff)
-
forum_threads_list_panel/php-files/modules/forum_threads_list_panel/module_installer.php (modified) (1 diff)
-
forum_threads_panel/php-files/modules/forum_threads_panel/forum_threads_panel.php (modified) (1 diff)
-
forum_threads_panel/php-files/modules/forum_threads_panel/module_installer.php (modified) (1 diff)
-
last_seen_users_panel/php-files/modules/last_seen_users_panel/last_seen_users_panel.php (modified) (1 diff)
-
last_seen_users_panel/php-files/modules/last_seen_users_panel/locale/English.php (modified) (1 diff)
-
last_seen_users_panel/php-files/modules/last_seen_users_panel/module_installer.php (modified) (6 diffs)
-
latest_articles_panel/php-files/modules/latest_articles_panel/latest_articles_panel.php (modified) (1 diff)
-
latest_articles_panel/php-files/modules/latest_articles_panel/module_installer.php (modified) (1 diff)
-
latest_news_panel/php-files/modules/latest_news_panel/latest_news_panel.php (modified) (1 diff)
-
latest_news_panel/php-files/modules/latest_news_panel/module_installer.php (modified) (1 diff)
-
login_panel/php-files/modules/login_panel/login_panel.php (modified) (1 diff)
-
login_panel/php-files/modules/login_panel/module_installer.php (modified) (1 diff)
-
mail2forum/php-files/modules/mail2forum/locale/English.php (modified) (1 diff)
-
mail2forum/php-files/modules/mail2forum/module_installer.php (modified) (1 diff)
-
newsletters/php-files/modules/newsletters/locale/English.php (modified) (1 diff)
-
newsletters/php-files/modules/newsletters/module_installer.php (modified) (1 diff)
-
newsletters/php-files/modules/newsletters/newsletters.php (modified) (1 diff)
-
newsletters/php-files/modules/newsletters/templates/modules.newsletters.send.tpl (modified) (2 diffs)
-
online_users_panel/php-files/modules/online_users_panel/module_installer.php (modified) (1 diff)
-
online_users_panel/php-files/modules/online_users_panel/online_users_panel.php (modified) (1 diff)
-
shoutbox_panel/php-files/modules/shoutbox_panel/module_installer.php (modified) (1 diff)
-
shoutbox_panel/php-files/modules/shoutbox_panel/shoutbox_panel.php (modified) (1 diff)
-
wiki/php-files/modules/wiki/handlers/page/upload.php (modified) (1 diff)
-
wiki/php-files/modules/wiki/module_installer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
modules/common/ad_side_panel/php-files/modules/ad_side_panel/ad_side_panel.php
r836 r865 10 10 | the included gpl.txt file or visit http://gnu.org | 11 11 +----------------------------------------------------*/ 12 if (eregi("ad_side_panel.php", $_SERVER['PHP_SELF']) || !defined(' ExiteCMS_INIT')) die();12 if (eregi("ad_side_panel.php", $_SERVER['PHP_SELF']) || !defined('INIT_CMS_OK')) die(); 13 13 14 14 // do not display this panel when in an admin module -
modules/common/ad_side_panel/php-files/modules/ad_side_panel/module_installer.php
r839 r865 13 13 | the included gpl.txt file or visit http://gnu.org | 14 14 +----------------------------------------------------*/ 15 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");15 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 16 16 17 17 /*---------------------------------------------------+ -
modules/common/birthday_panel/php-files/modules/birthday_panel/birthday_panel.php
r836 r865 10 10 | the included gpl.txt file or visit http://gnu.org | 11 11 +----------------------------------------------------*/ 12 if (eregi("birthday_panel.php", $_SERVER['PHP_SELF']) || !defined(' ExiteCMS_INIT')) die();12 if (eregi("birthday_panel.php", $_SERVER['PHP_SELF']) || !defined('INIT_CMS_OK')) die(); 13 13 14 14 // load the locale for this panel -
modules/common/birthday_panel/php-files/modules/birthday_panel/module_installer.php
r839 r865 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+ -
modules/common/donations/php-files/modules/donations/admin_panel.php
r836 r865 257 257 $result = dbquery("SELECT DISTINCT ip_code, ip_name FROM ".$db_prefix."GeoIP ORDER BY ip_name"); 258 258 while ($data = dbarray($result)) { 259 $variables['countries'][] = $data;259 if (!empty($data['ip_code'])) $variables['countries'][] = $data; 260 260 } 261 261 -
modules/common/donations/php-files/modules/donations/module_installer.php
r839 r865 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+ -
modules/common/donations/php-files/modules/donations/templates/modules.donations.admin_panel.tpl
r765 r865 83 83 <select name='donate_country' class='textbox' style='width:225px;'> 84 84 {section name=cc loop=$countries} 85 <option value='{$countries[cc].ip_code}'{if $countries[cc].ip_code == $donate_country} selected {/if}>{$countries[cc].ip_name}</option>85 <option value='{$countries[cc].ip_code}'{if $countries[cc].ip_code == $donate_country} selected="selected"{/if}>{$countries[cc].ip_name}</option> 86 86 {/section} 87 87 </select> … … 93 93 </td> 94 94 <td class='tbl'> 95 <input type='text' name='donate_amount' value='{$donate_amount}' class='textbox' style='width:75px;' maxlength='30' on KeyPress='return(currencyFormat(this,\",\",\".\",event))' />95 <input type='text' name='donate_amount' value='{$donate_amount}' class='textbox' style='width:75px;' maxlength='30' onkeypress='return(currencyFormat(this,\",\",\".\",event))' /> 96 96 </td> 97 97 </tr> … … 117 117 </td> 118 118 <td class='tbl'> 119 <select name='donate_type' class='textbox'{if $donate_type == "0"} disabled {/if}>120 {if $action == "edit"}<option value='0'{if $donate_type == "0"} selected {/if}>{$locale.don425}</option>{/if}121 <option value='1'{if $donate_type == "1"} selected {/if}>{$locale.don426}</option>122 <option value='2'{if $donate_type == "2"} selected {/if}>{$locale.don427}</option>119 <select name='donate_type' class='textbox'{if $donate_type == "0"} disabled="disabled"{/if}> 120 {if $action == "edit"}<option value='0'{if $donate_type == "0"} selected="selected"{/if}>{$locale.don425}</option>{/if} 121 <option value='1'{if $donate_type == "1"} selected="selected"{/if}>{$locale.don426}</option> 122 <option value='2'{if $donate_type == "2"} selected="selected"{/if}>{$locale.don427}</option> 123 123 </select> 124 124 </td> … … 126 126 <tr> 127 127 <td align='center' colspan='2' class='tbl'> 128 <input type='hidden' name='donate_id' value='{$donate_id}' >129 <input type='hidden' name='donate_state' value='{$donate_state}' >130 <input type='hidden' name='donate_timestamp' value='{$donate_timestamp}' >128 <input type='hidden' name='donate_id' value='{$donate_id}' /> 129 <input type='hidden' name='donate_state' value='{$donate_state}' /> 130 <input type='hidden' name='donate_timestamp' value='{$donate_timestamp}' /> 131 131 {if $action == "add"} 132 <input type='submit' name='save' value='{$locale.don430}' class='button' >132 <input type='submit' name='save' value='{$locale.don430}' class='button' /> 133 133 {elseif $action == "edit"} 134 <input type='submit' name='save' value='{$locale.don431}' class='button' >134 <input type='submit' name='save' value='{$locale.don431}' class='button' /> 135 135 {/if} 136 136 </td> … … 149 149 {$locale.don451} : 150 150 <select name='new_forum_id' class='textbox' style='width:300px;'> 151 <option value='0'{if $settings.donate_forum_id == 0} selected {/if}>{$locale.don450}</option>151 <option value='0'{if $settings.donate_forum_id == 0} selected="selected"{/if}>{$locale.don450}</option> 152 152 {section name=id loop=$forums} 153 153 {if $forums[id].forum_new_cat} … … 156 156 {assign var='hasvalues' value=false} 157 157 {else} 158 <option value='{$forums[id].forum_id}'{if $forums[id].forum_id == $settings.donate_forum_id} selected {/if}>{$forums[id].forum_name}</option>158 <option value='{$forums[id].forum_id}'{if $forums[id].forum_id == $settings.donate_forum_id} selected="selected"{/if}>{$forums[id].forum_name}</option> 159 159 {assign var='hasvalues' value=true} 160 160 {/if} … … 167 167 <td class='tbl1' style='text-align:center;'> 168 168 <input type='submit' name='save_notify' value='{$locale.don431}' class='button' /> 169 <input type='hidden' name='forum_id' value='{$settings.donate_forum_id}' >169 <input type='hidden' name='forum_id' value='{$settings.donate_forum_id}' /> 170 170 </td> 171 171 </tr> 172 172 <tr> 173 <td class='tbl1' class='small'style='text-align:center;'>173 <td class='tbl1' style='text-align:center;'> 174 174 <span class='small2'> 175 175 {ssprintf format=$locale.don452 var1=$locale.don453} … … 220 220 [<a href='{$smarty.const.FUSION_SELF}{$aidlink}&action=edit&id={$donations[id].donate_id}'>{$locale.don432}</a>] 221 221 {if $donations[id].donate_state == '1'} 222 [<a href='{$smarty.const.FUSION_SELF}{$aidlink}&action=delete&id={$donations[id].donate_id}' on Click='return DeleteItem()'>{$locale.don433}</a>]222 [<a href='{$smarty.const.FUSION_SELF}{$aidlink}&action=delete&id={$donations[id].donate_id}' onclick='return DeleteItem()'>{$locale.don433}</a>] 223 223 {/if} 224 224 </td> -
modules/common/download_bars_panel/php-files/modules/download_bars_panel/download_bars_panel.php
r836 r865 10 10 | the included gpl.txt file or visit http://gnu.org | 11 11 +----------------------------------------------------*/ 12 if (eregi("download_bars_panel.php", $_SERVER['PHP_SELF']) || !defined(' ExiteCMS_INIT')) die();12 if (eregi("download_bars_panel.php", $_SERVER['PHP_SELF']) || !defined('INIT_CMS_OK')) die(); 13 13 14 14 // array's to store the variables for this panel -
modules/common/forum_threads_list_panel/php-files/modules/forum_threads_list_panel/forum_threads_list_panel.php
r862 r865 13 13 | the included gpl.txt file or visit http://gnu.org | 14 14 +----------------------------------------------------*/ 15 if (eregi("forum_threads_list_panel.php", $_SERVER['PHP_SELF']) || !defined(' ExiteCMS_INIT')) die();15 if (eregi("forum_threads_list_panel.php", $_SERVER['PHP_SELF']) || !defined('INIT_CMS_OK')) die(); 16 16 17 17 // load the forum functions include -
modules/common/forum_threads_list_panel/php-files/modules/forum_threads_list_panel/module_installer.php
r839 r865 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+ -
modules/common/forum_threads_panel/php-files/modules/forum_threads_panel/forum_threads_panel.php
r836 r865 13 13 | the included gpl.txt file or visit http://gnu.org | 14 14 +----------------------------------------------------*/ 15 if (eregi("forum_threads_panel.php", $_SERVER['PHP_SELF']) || !defined(' ExiteCMS_INIT')) die();15 if (eregi("forum_threads_panel.php", $_SERVER['PHP_SELF']) || !defined('INIT_CMS_OK')) die(); 16 16 17 17 define('NEWEST_THREADS', 5); -
modules/common/forum_threads_panel/php-files/modules/forum_threads_panel/module_installer.php
r839 r865 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+ -
modules/common/last_seen_users_panel/php-files/modules/last_seen_users_panel/last_seen_users_panel.php
r836 r865 13 13 | the included gpl.txt file or visit http://gnu.org | 14 14 +----------------------------------------------------*/ 15 if (eregi("last_seen_users_panel.php", $_SERVER['PHP_SELF']) || !defined(' ExiteCMS_INIT')) die();15 if (eregi("last_seen_users_panel.php", $_SERVER['PHP_SELF']) || !defined('INIT_CMS_OK')) die(); 16 16 17 17 // number of users to show in the panel -
modules/common/last_seen_users_panel/php-files/modules/last_seen_users_panel/locale/English.php
r808 r865 7 7 $locale['lsup005'] = "day"; 8 8 $locale['lsup006'] = "days"; 9 10 $locale['lsup100'] = "Last Seen Users Panel"; 11 $locale['lsup101'] = "Side panel to display the last active website users"; 9 12 ?> -
modules/common/last_seen_users_panel/php-files/modules/last_seen_users_panel/module_installer.php
r840 r865 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+ … … 18 18 +----------------------------------------------------*/ 19 19 20 // no locales for this plugin 20 if (file_exists(PATH_MODULES."last_seen_users_panel/locale/".$settings['locale'].".php")) { 21 include PATH_MODULES."last_seen_users_panel/locale/".$settings['locale'].".php"; 22 } else { 23 include PATH_MODULES."last_seen_users_panel/locale/English.php"; 24 } 21 25 22 26 /*---------------------------------------------------+ 23 27 | Module identification | 24 28 +----------------------------------------------------*/ 25 $mod_title = "Last seen users side panel"; 26 $mod_description = "Shows the last members logged on, and the time there were last seen"; 27 $mod_version = "1.0.0"; 28 $mod_developer = "WanWizard"; 29 $mod_title = $locale['lsup100']; // title or name of this module 30 $mod_description = $locale['lsup101']; // short description of it's purpose 31 $mod_version = "1.0.0"; // module version number 32 $mod_folder = "last_seen_users_panel"; // sub-folder of the /modules folder 33 $mod_developer = "WanWizard"; // author's name 29 34 $mod_email = "wanwizard@gmail.com"; 30 35 $mod_weburl = "http://exitecms.exite.eu/"; 31 $mod_type = " P";36 $mod_type = "M"; 32 37 33 38 /*---------------------------------------------------+ … … 35 40 +----------------------------------------------------*/ 36 41 37 $mod_folder = "last_seen_users_panel"; 38 // no administration module for this plugin 42 // no admin module 39 43 40 44 /*---------------------------------------------------+ … … 59 63 +----------------------------------------------------*/ 60 64 61 $mod_site_links = array(); 65 $mod_site_links = array(); // site_links definitions. Multiple can be defined 62 66 63 67 /*---------------------------------------------------+ … … 65 69 +----------------------------------------------------*/ 66 70 67 $mod_install_cmds = array(); 71 $mod_install_cmds = array(); // commands to execute when installing this module 68 72 69 73 /*---------------------------------------------------+ … … 71 75 +----------------------------------------------------*/ 72 76 73 $mod_uninstall_cmds = array(); 77 $mod_uninstall_cmds = array(); // commands to execute when uninstalling this module 74 78 75 79 /*---------------------------------------------------+ -
modules/common/latest_articles_panel/php-files/modules/latest_articles_panel/latest_articles_panel.php
r836 r865 13 13 | the included gpl.txt file or visit http://gnu.org | 14 14 +----------------------------------------------------*/ 15 if (eregi("lastest_articles_panel.php", $_SERVER['PHP_SELF']) || !defined(' ExiteCMS_INIT')) die();15 if (eregi("lastest_articles_panel.php", $_SERVER['PHP_SELF']) || !defined('INIT_CMS_OK')) die(); 16 16 17 17 // number of articles to show in the panel -
modules/common/latest_articles_panel/php-files/modules/latest_articles_panel/module_installer.php
r840 r865 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+ -
modules/common/latest_news_panel/php-files/modules/latest_news_panel/latest_news_panel.php
r836 r865 13 13 | the included gpl.txt file or visit http://gnu.org | 14 14 +----------------------------------------------------*/ 15 if (eregi("lastest_news_panel.php", $_SERVER['PHP_SELF']) || !defined(' ExiteCMS_INIT')) die();15 if (eregi("lastest_news_panel.php", $_SERVER['PHP_SELF']) || !defined('INIT_CMS_OK')) die(); 16 16 17 17 // number of articles to show in the panel -
modules/common/latest_news_panel/php-files/modules/latest_news_panel/module_installer.php
r840 r865 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+ -
modules/common/login_panel/php-files/modules/login_panel/login_panel.php
r836 r865 13 13 | the included gpl.txt file or visit http://gnu.org | 14 14 +----------------------------------------------------*/ 15 if (eregi("login_panel.php", $_SERVER['PHP_SELF']) || !defined(' ExiteCMS_INIT')) die();15 if (eregi("login_panel.php", $_SERVER['PHP_SELF']) || !defined('INIT_CMS_OK')) die(); 16 16 17 17 // array's to store the variables for this panel -
modules/common/login_panel/php-files/modules/login_panel/module_installer.php
r840 r865 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+ -
modules/common/mail2forum/php-files/modules/mail2forum/locale/English.php
r844 r865 1 1 <?php 2 $locale['m2fver'] = "0.1. 0";2 $locale['m2fver'] = "0.1.1"; 3 3 // Infusion titles & description 4 4 $locale['m2f100'] = "Mail2Forum"; -
modules/common/mail2forum/php-files/modules/mail2forum/module_installer.php
r840 r865 10 10 | the included gpl.txt file or visit http://gnu.org | 11 11 +----------------------------------------------------*/ 12 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");12 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 13 13 14 14 /*---------------------------------------------------+ -
modules/common/newsletters/php-files/modules/newsletters/locale/English.php
r798 r865 1 1 <?php 2 $locale['nlver'] = "1.0.0";3 2 // Infusion titles & description 4 3 $locale['nl100'] = "Newsletters"; -
modules/common/newsletters/php-files/modules/newsletters/module_installer.php
r840 r865 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+ -
modules/common/newsletters/php-files/modules/newsletters/newsletters.php
r836 r865 315 315 $content = str_replace("{:DATE:D:}", "<span style='font-family:monospace;color:red;font-size:12px'>".showdate('%d-%m-%Y')."</span>", $content); 316 316 $content = str_replace("{:DATE:T:}", "<span style='font-family:monospace;color:red;font-size:12px'>".showdate('%T')."</span>", $content); 317 $variables['html'] = str_replace("{:DATE:}", "<span style='font-family:monospace;color:red;font-size:12px'>".showdate('shortdate')."</span>", $content); 317 $content = str_replace("{:DATE:}", "<span style='font-family:monospace;color:red;font-size:12px'>".showdate('shortdate')."</span>", $content); 318 // convert &, htmlentities is way to strict for this! 319 $variables['html'] = str_replace('&', '&', str_replace('&', '&', $content)); 320 318 321 $template_panels[] = array('type' => 'body', 'title' => $subject, 'name' => 'modules.newsletters.preview', 'template' => '_custom_html.tpl'); 319 322 $template_variables['modules.newsletters.preview'] = $variables; -
modules/common/newsletters/php-files/modules/newsletters/templates/modules.newsletters.send.tpl
r798 r865 30 30 <td align='left' class='tbl1' style='white-space:nowrap'> 31 31 <select name='send_to_myself' class='textbox'> 32 <option value='0' selected >{$locale.nl472}</option>32 <option value='0' selected="selected">{$locale.nl472}</option> 33 33 <option value='1'>{$locale.nl473}</option> 34 34 </select> … … 62 62 <td align='left' class='tbl1' style='white-space:nowrap'> 63 63 <select name='send_to_all' class='textbox'> 64 <option value='0' selected >{$locale.nl472}</option>64 <option value='0' selected="selected">{$locale.nl472}</option> 65 65 <option value='1'>{$locale.nl473}</option> 66 66 </select> -
modules/common/online_users_panel/php-files/modules/online_users_panel/module_installer.php
r840 r865 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+ -
modules/common/online_users_panel/php-files/modules/online_users_panel/online_users_panel.php
r836 r865 13 13 | the included gpl.txt file or visit http://gnu.org | 14 14 +----------------------------------------------------*/ 15 if (eregi("online_users_panel.php", $_SERVER['PHP_SELF']) || !defined(' ExiteCMS_INIT')) die();15 if (eregi("online_users_panel.php", $_SERVER['PHP_SELF']) || !defined('INIT_CMS_OK')) die(); 16 16 17 17 // GeoIP include to map IP to country -
modules/common/shoutbox_panel/php-files/modules/shoutbox_panel/module_installer.php
r840 r865 10 10 | the included gpl.txt file or visit http://gnu.org | 11 11 +----------------------------------------------------*/ 12 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");12 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 13 13 14 14 /*---------------------------------------------------+ -
modules/common/shoutbox_panel/php-files/modules/shoutbox_panel/shoutbox_panel.php
r836 r865 13 13 | the included gpl.txt file or visit http://gnu.org | 14 14 +----------------------------------------------------*/ 15 if (eregi("shout_panel.php", $_SERVER['PHP_SELF']) || !defined(' ExiteCMS_INIT')) die();15 if (eregi("shout_panel.php", $_SERVER['PHP_SELF']) || !defined('INIT_CMS_OK')) die(); 16 16 17 17 // array's to store the variables for this panel -
modules/common/wiki/php-files/modules/wiki/handlers/page/upload.php
r862 r865 160 160 if (isset($_GET['view']) && stripinput($_GET['view']) == $file) { 161 161 print ("<tr> 162 <td class='tbl ' colspan='4' align='center'>162 <td class='tbl2' colspan='4' align='center'> 163 163 <img src='".IMAGES."wiki/$file' alt='$file' /> 164 164 </td> 165 165 </tr>\n"); 166 print ("<tr height='20'>166 print ("<tr> 167 167 <td class='tbl2' colspan='4' align='center'> 168 168 <div style='vertical-align:middle;display:table-cell;padding:4px;'> -
modules/common/wiki/php-files/modules/wiki/module_installer.php
r862 r865 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+
Note: See TracChangeset
for help on using the changeset viewer.
