mirror of
https://github.com/e107inc/e107.git
synced 2025-07-29 02:40:25 +02:00
notice removal
This commit is contained in:
@@ -12,9 +12,9 @@
|
|||||||
| GNU General Public License (http://gnu.org).
|
| GNU General Public License (http://gnu.org).
|
||||||
|
|
|
|
||||||
| $Source: /cvs_backup/e107_0.8/e107_handlers/shortcode_handler.php,v $
|
| $Source: /cvs_backup/e107_0.8/e107_handlers/shortcode_handler.php,v $
|
||||||
| $Revision: 1.24 $
|
| $Revision: 1.25 $
|
||||||
| $Date: 2009-01-25 17:44:13 $
|
| $Date: 2009-02-03 11:58:36 $
|
||||||
| $Author: mcfly_e107 $
|
| $Author: lisa_ $
|
||||||
+----------------------------------------------------------------------------+
|
+----------------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -95,7 +95,7 @@ class e_shortcode
|
|||||||
$this->parseSCFiles = true; // Default probably never used, but make sure its defined.
|
$this->parseSCFiles = true; // Default probably never used, but make sure its defined.
|
||||||
|
|
||||||
//Register any shortcode from the shortcode/override/ directory
|
//Register any shortcode from the shortcode/override/ directory
|
||||||
if($pref['sc_override'])
|
if(varset($pref['sc_override']))
|
||||||
{
|
{
|
||||||
$tmp = explode(',', $pref['sc_override']);
|
$tmp = explode(',', $pref['sc_override']);
|
||||||
foreach($tmp as $code)
|
foreach($tmp as $code)
|
||||||
|
@@ -11,9 +11,9 @@
|
|||||||
| GNU General Public License (http://gnu.org).
|
| GNU General Public License (http://gnu.org).
|
||||||
|
|
|
|
||||||
| $Source: /cvs_backup/e107_0.8/e107_plugins/linkwords/e_tohtml.php,v $
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/linkwords/e_tohtml.php,v $
|
||||||
| $Revision: 1.4 $
|
| $Revision: 1.5 $
|
||||||
| $Date: 2008-12-13 18:04:52 $
|
| $Date: 2009-02-03 11:59:02 $
|
||||||
| $Author: e107steved $
|
| $Author: lisa_ $
|
||||||
|
|
|
|
||||||
| *utf - flags functions which need utf-8-aware code
|
| *utf - flags functions which need utf-8-aware code
|
||||||
TODO:
|
TODO:
|
||||||
@@ -27,7 +27,7 @@ TODO:
|
|||||||
if (!defined('e107_INIT')) { exit; }
|
if (!defined('e107_INIT')) { exit; }
|
||||||
if (!plugInstalled('linkwords')) exit;
|
if (!plugInstalled('linkwords')) exit;
|
||||||
|
|
||||||
define('LW_CACHE_ENABLE', TRUEE);
|
define('LW_CACHE_ENABLE', TRUE);
|
||||||
define('LW_CACHE_TAG', 'nomd5_linkwords');
|
define('LW_CACHE_TAG', 'nomd5_linkwords');
|
||||||
|
|
||||||
class e_tohtml_linkwords
|
class e_tohtml_linkwords
|
||||||
|
@@ -6,9 +6,9 @@
|
|||||||
| Released under the terms and conditions of the GNU General Public License (http://gnu.org).
|
| Released under the terms and conditions of the GNU General Public License (http://gnu.org).
|
||||||
|
|
|
|
||||||
| $Source: /cvs_backup/e107_0.8/e107_themes/templates/header_default.php,v $
|
| $Source: /cvs_backup/e107_0.8/e107_themes/templates/header_default.php,v $
|
||||||
| $Revision: 1.26 $
|
| $Revision: 1.27 $
|
||||||
| $Date: 2008-12-04 21:05:05 $
|
| $Date: 2009-02-03 11:59:12 $
|
||||||
| $Author: mcfly_e107 $
|
| $Author: lisa_ $
|
||||||
+-----------------------------------------------------------------------------------------------+
|
+-----------------------------------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -378,6 +378,7 @@ $js_body_onload = array();//'externalLinks();'; - already registered to e107:loa
|
|||||||
|
|
||||||
// Theme JS
|
// Theme JS
|
||||||
if (defined('THEME_ONLOAD')) $js_body_onload[] = THEME_ONLOAD;
|
if (defined('THEME_ONLOAD')) $js_body_onload[] = THEME_ONLOAD;
|
||||||
|
$body_onload='';
|
||||||
if (count($js_body_onload)) $body_onload = " onload=\"".implode(" ",$js_body_onload)."\"";
|
if (count($js_body_onload)) $body_onload = " onload=\"".implode(" ",$js_body_onload)."\"";
|
||||||
|
|
||||||
//
|
//
|
||||||
@@ -445,7 +446,7 @@ if ($e107_popup != 1) {
|
|||||||
//
|
//
|
||||||
// M: Send top of body for custom pages and for news
|
// M: Send top of body for custom pages and for news
|
||||||
//
|
//
|
||||||
$def = $pref['theme_deflayout'];
|
$def = varset($pref['theme_deflayout']);
|
||||||
if(is_array($HEADER) && isset($HEADER[$def]) && isset($FOOTER[$def]))
|
if(is_array($HEADER) && isset($HEADER[$def]) && isset($FOOTER[$def]))
|
||||||
{
|
{
|
||||||
$HEADER = $HEADER[$def];
|
$HEADER = $HEADER[$def];
|
||||||
|
Reference in New Issue
Block a user