From 084c6123f0a0fbf05ed4c0d776f05e084d9ecc58 Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Fri, 18 Feb 2011 11:21:43 +0000 Subject: added new EasyGiant library --- h-source/Application/Models/HardwareModel.php | 9 ++++++-- h-source/Application/Models/WikiModel.php | 11 ++++++++-- h-source/Library/Array/Validate/Base.php | 19 ++++++++++++++-- h-source/Library/Array/Validate/Soft.php | 19 ++++++++++++++-- h-source/Library/Array/Validate/Strong.php | 19 ++++++++++++++-- h-source/Library/ArrayExt.php | 23 ++++++++++++++++++-- h-source/Library/Bootstrap.php | 19 ++++++++++++++-- h-source/Library/BoxParser.php | 19 ++++++++++++++-- h-source/Library/Call.php | 19 ++++++++++++++-- h-source/Library/Controller.php | 19 ++++++++++++++-- h-source/Library/Db/Mysql.php | 19 ++++++++++++++-- h-source/Library/Db/Mysqli.php | 19 ++++++++++++++-- h-source/Library/Email.php | 19 ++++++++++++++-- h-source/Library/ErrorReporting.php | 20 ++++++++++++++++- h-source/Library/Factory/Db.php | 19 ++++++++++++++-- h-source/Library/Files/Log.php | 19 ++++++++++++++-- h-source/Library/Files/Upload.php | 27 ++++++++++++++++++++--- h-source/Library/Form/Checkbox.php | 30 +++++++++++++++----------- h-source/Library/Form/Entry.php | 19 ++++++++++++++-- h-source/Library/Form/Form.php | 19 ++++++++++++++-- h-source/Library/Form/Hidden.php | 19 ++++++++++++++-- h-source/Library/Form/Html.php | 19 ++++++++++++++-- h-source/Library/Form/InputText.php | 19 ++++++++++++++-- h-source/Library/Form/Password.php | 19 ++++++++++++++-- h-source/Library/Form/Radio.php | 19 ++++++++++++++-- h-source/Library/Form/Select.php | 19 ++++++++++++++-- h-source/Library/Form/Textarea.php | 19 ++++++++++++++-- h-source/Library/Functions.php | 19 ++++++++++++++-- h-source/Library/HeaderObj.php | 19 ++++++++++++++-- h-source/Library/Helper/Array.php | 19 ++++++++++++++-- h-source/Library/Helper/Html.php | 19 ++++++++++++++-- h-source/Library/Helper/List.php | 19 ++++++++++++++-- h-source/Library/Helper/Menu.php | 19 ++++++++++++++-- h-source/Library/Helper/Pages.php | 19 ++++++++++++++-- h-source/Library/Helper/Popup.php | 19 ++++++++++++++-- h-source/Library/Hooks.php | 19 ++++++++++++++-- h-source/Library/Html/Form.php | 19 ++++++++++++++-- h-source/Library/Image/Gd/Captcha.php | 19 ++++++++++++++-- h-source/Library/Image/Gd/Thumbnail.php | 19 ++++++++++++++-- h-source/Library/Lang/Eng/DbCondStrings.php | 19 ++++++++++++++-- h-source/Library/Lang/Eng/ModelStrings.php | 19 ++++++++++++++-- h-source/Library/Lang/Eng/UploadStrings.php | 19 ++++++++++++++-- h-source/Library/Lang/Eng/ValCondStrings.php | 19 ++++++++++++++-- h-source/Library/Lang/ResultStrings.php | 19 ++++++++++++++-- h-source/Library/ModAbstract.php | 19 ++++++++++++++-- h-source/Library/Model/Base.php | 31 +++++++++++++++++++++++++-- h-source/Library/Model/Map.php | 19 ++++++++++++++-- h-source/Library/Model/Tree.php | 19 ++++++++++++++-- h-source/Library/Params.php | 19 ++++++++++++++-- h-source/Library/Popup.php | 19 ++++++++++++++-- h-source/Library/Request.php | 19 ++++++++++++++-- h-source/Library/Scaffold.php | 19 ++++++++++++++-- h-source/Library/Strings/Functions.php | 19 ++++++++++++++-- h-source/Library/Theme.php | 19 ++++++++++++++-- h-source/Library/Url.php | 19 ++++++++++++++-- h-source/Library/Users/CheckAdmin.php | 19 ++++++++++++++-- 56 files changed, 959 insertions(+), 123 deletions(-) (limited to 'h-source') diff --git a/h-source/Application/Models/HardwareModel.php b/h-source/Application/Models/HardwareModel.php index 17565ff..7df7a65 100644 --- a/h-source/Application/Models/HardwareModel.php +++ b/h-source/Application/Models/HardwareModel.php @@ -119,6 +119,8 @@ class HardwareModel extends Model_Map { $revisions = new RevisionsModel(); $revisions->values = $oldValues; + $revisions->sanitize(); + if ($revisions->insert()) { parent::update($clean['id']); @@ -162,11 +164,14 @@ class HardwareModel extends Model_Map { if (count($newStruct > 0)) { $revisions->values = $oldStruct[0]['hardware']; - + $revisions->sanitize(); + $this->values = $newStruct[0]['revisions']; $this->values['updated_by'] = (int)$this->id_user; $this->values['update_date'] = date('Y-m-d H:i:s'); - + + $this->sanitize(); + if ($revisions->insert()) { if (parent::update($clean['id_hard'])) diff --git a/h-source/Application/Models/WikiModel.php b/h-source/Application/Models/WikiModel.php index 3e768d3..3e2a4a9 100644 --- a/h-source/Application/Models/WikiModel.php +++ b/h-source/Application/Models/WikiModel.php @@ -98,7 +98,7 @@ class WikiModel extends Model_Map { $this->lastId = $clean['id']; $this->lastTitle = $resId[0]['wiki']['title']; $this->lastTitleClean = titleForRedirect($resId[0]['wiki']['title']); - $this->db->update('wiki','title_clean',array(encodeUrl($resId[0]['wiki']['title'])),'id_wiki='.$clean['id']); + $this->db->update('wiki','title_clean',array(encodeUrl(sanitizeDb($resId[0]['wiki']['title']))),'id_wiki='.$clean['id']); //update the history table $this->updateHistory('insert'); @@ -126,6 +126,9 @@ class WikiModel extends Model_Map { $revisions = new WikirevisionsModel(); $revisions->values = $oldValues; + + $revisions->sanitize(); + if ($revisions->insert()) { @@ -156,6 +159,7 @@ class WikiModel extends Model_Map { public function makeCurrent($id_rev) { + $clean['id_rev'] = (int)$id_rev; $revisions = new WikirevisionsModel(); @@ -175,11 +179,14 @@ class WikiModel extends Model_Map { if (count($newStruct > 0)) { $revisions->values = $oldStruct[0]['wiki']; - + $revisions->sanitize(); + $this->values = $newStruct[0]['wiki_revisions']; $this->values['created_by'] = (int)$this->id_user; $this->values['update_date'] = date('Y-m-d H:i:s'); + $this->sanitize(); + if ($this->isMain($clean['id_wiki'])) { $this->values['title'] = 'Main Page'; diff --git a/h-source/Library/Array/Validate/Base.php b/h-source/Library/Array/Validate/Base.php index 3366097..17ccc89 100644 --- a/h-source/Library/Array/Validate/Base.php +++ b/h-source/Library/Array/Validate/Base.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Array/Validate/Soft.php b/h-source/Library/Array/Validate/Soft.php index 95e208d..50eda2a 100644 --- a/h-source/Library/Array/Validate/Soft.php +++ b/h-source/Library/Array/Validate/Soft.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Array/Validate/Strong.php b/h-source/Library/Array/Validate/Strong.php index 6494483..244cf0c 100644 --- a/h-source/Library/Array/Validate/Strong.php +++ b/h-source/Library/Array/Validate/Strong.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/ArrayExt.php b/h-source/Library/ArrayExt.php index 93eca91..1375f6d 100755 --- a/h-source/Library/ArrayExt.php +++ b/h-source/Library/ArrayExt.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); @@ -40,6 +55,10 @@ class ArrayExt { } } } + else + { + $tempArray = $associativeArray; + } return call_user_func($func.'Deep',$tempArray); //clean the array values } diff --git a/h-source/Library/Bootstrap.php b/h-source/Library/Bootstrap.php index 796b22f..a8d1499 100755 --- a/h-source/Library/Bootstrap.php +++ b/h-source/Library/Bootstrap.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/BoxParser.php b/h-source/Library/BoxParser.php index 90d2426..7278f65 100644 --- a/h-source/Library/BoxParser.php +++ b/h-source/Library/BoxParser.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Call.php b/h-source/Library/Call.php index d80f1d4..e89b3b0 100755 --- a/h-source/Library/Call.php +++ b/h-source/Library/Call.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Controller.php b/h-source/Library/Controller.php index 9ceaa5f..307dfe3 100755 --- a/h-source/Library/Controller.php +++ b/h-source/Library/Controller.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Db/Mysql.php b/h-source/Library/Db/Mysql.php index 8b96f44..3f8d3ef 100755 --- a/h-source/Library/Db/Mysql.php +++ b/h-source/Library/Db/Mysql.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Db/Mysqli.php b/h-source/Library/Db/Mysqli.php index 4e4c528..09bb017 100644 --- a/h-source/Library/Db/Mysqli.php +++ b/h-source/Library/Db/Mysqli.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Email.php b/h-source/Library/Email.php index c948098..1cf065a 100644 --- a/h-source/Library/Email.php +++ b/h-source/Library/Email.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/ErrorReporting.php b/h-source/Library/ErrorReporting.php index bc541bc..6cd0143 100644 --- a/h-source/Library/ErrorReporting.php +++ b/h-source/Library/ErrorReporting.php @@ -1,6 +1,24 @@ . + +if (!defined('EG')) die('Direct access not allowed!'); function ErrorReporting() { if (RUNTIME_CONFIGURATION === true) diff --git a/h-source/Library/Factory/Db.php b/h-source/Library/Factory/Db.php index 3a988dd..bfd5eb1 100755 --- a/h-source/Library/Factory/Db.php +++ b/h-source/Library/Factory/Db.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Files/Log.php b/h-source/Library/Files/Log.php index 895c26d..d761f08 100644 --- a/h-source/Library/Files/Log.php +++ b/h-source/Library/Files/Log.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Files/Upload.php b/h-source/Library/Files/Upload.php index 47289fd..466582c 100755 --- a/h-source/Library/Files/Upload.php +++ b/h-source/Library/Files/Upload.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); @@ -41,7 +56,7 @@ class Files_Upload 'createFolderAction'=>'createFolderAction', 'uploadFileAction'=>'uploadFileAction', 'maxFileSize' => 3000000, - 'language' => 'eng', + 'language' => 'Eng', 'allowedExtensions'=>'jpg,jpeg,png,gif,txt', 'fileUploadKey' => 'userfile' ); @@ -68,6 +83,12 @@ class Files_Upload } + //change a resulting string + public function setString($key,$value) + { + $this->_resultString->string[$key] = $value; + } + //obtain the current directory public function setDirectory($directory = null) { diff --git a/h-source/Library/Form/Checkbox.php b/h-source/Library/Form/Checkbox.php index 5df1917..a606e76 100755 --- a/h-source/Library/Form/Checkbox.php +++ b/h-source/Library/Form/Checkbox.php @@ -1,18 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Form/Entry.php b/h-source/Library/Form/Entry.php index 725235a..2582557 100755 --- a/h-source/Library/Form/Entry.php +++ b/h-source/Library/Form/Entry.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Form/Form.php b/h-source/Library/Form/Form.php index 00e27d4..9705666 100755 --- a/h-source/Library/Form/Form.php +++ b/h-source/Library/Form/Form.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Form/Hidden.php b/h-source/Library/Form/Hidden.php index fb81b30..5fd6148 100755 --- a/h-source/Library/Form/Hidden.php +++ b/h-source/Library/Form/Hidden.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Form/Html.php b/h-source/Library/Form/Html.php index dce91c6..8b7cbfb 100644 --- a/h-source/Library/Form/Html.php +++ b/h-source/Library/Form/Html.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Form/InputText.php b/h-source/Library/Form/InputText.php index fb98336..02315a6 100755 --- a/h-source/Library/Form/InputText.php +++ b/h-source/Library/Form/InputText.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Form/Password.php b/h-source/Library/Form/Password.php index 76bc735..02500af 100644 --- a/h-source/Library/Form/Password.php +++ b/h-source/Library/Form/Password.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Form/Radio.php b/h-source/Library/Form/Radio.php index fb20677..49137c0 100755 --- a/h-source/Library/Form/Radio.php +++ b/h-source/Library/Form/Radio.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Form/Select.php b/h-source/Library/Form/Select.php index 558fd57..db88124 100755 --- a/h-source/Library/Form/Select.php +++ b/h-source/Library/Form/Select.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Form/Textarea.php b/h-source/Library/Form/Textarea.php index d81cc84..33b8bc3 100755 --- a/h-source/Library/Form/Textarea.php +++ b/h-source/Library/Form/Textarea.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Functions.php b/h-source/Library/Functions.php index 414770f..8384580 100755 --- a/h-source/Library/Functions.php +++ b/h-source/Library/Functions.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/HeaderObj.php b/h-source/Library/HeaderObj.php index f4fe65b..73b53de 100644 --- a/h-source/Library/HeaderObj.php +++ b/h-source/Library/HeaderObj.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Helper/Array.php b/h-source/Library/Helper/Array.php index 32a4c27..b504a08 100755 --- a/h-source/Library/Helper/Array.php +++ b/h-source/Library/Helper/Array.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Helper/Html.php b/h-source/Library/Helper/Html.php index b3648be..9484609 100755 --- a/h-source/Library/Helper/Html.php +++ b/h-source/Library/Helper/Html.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Helper/List.php b/h-source/Library/Helper/List.php index 660ac67..ce811e2 100755 --- a/h-source/Library/Helper/List.php +++ b/h-source/Library/Helper/List.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Helper/Menu.php b/h-source/Library/Helper/Menu.php index 119ada8..151057a 100755 --- a/h-source/Library/Helper/Menu.php +++ b/h-source/Library/Helper/Menu.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Helper/Pages.php b/h-source/Library/Helper/Pages.php index eec58f6..0496ca3 100755 --- a/h-source/Library/Helper/Pages.php +++ b/h-source/Library/Helper/Pages.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Helper/Popup.php b/h-source/Library/Helper/Popup.php index 9ceac72..bf6400a 100755 --- a/h-source/Library/Helper/Popup.php +++ b/h-source/Library/Helper/Popup.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Hooks.php b/h-source/Library/Hooks.php index fa005b9..853bb6f 100644 --- a/h-source/Library/Hooks.php +++ b/h-source/Library/Hooks.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Html/Form.php b/h-source/Library/Html/Form.php index bddc13f..e3148cd 100644 --- a/h-source/Library/Html/Form.php +++ b/h-source/Library/Html/Form.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Image/Gd/Captcha.php b/h-source/Library/Image/Gd/Captcha.php index ace4806..b414b13 100644 --- a/h-source/Library/Image/Gd/Captcha.php +++ b/h-source/Library/Image/Gd/Captcha.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Image/Gd/Thumbnail.php b/h-source/Library/Image/Gd/Thumbnail.php index 5981175..742aa17 100644 --- a/h-source/Library/Image/Gd/Thumbnail.php +++ b/h-source/Library/Image/Gd/Thumbnail.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Lang/Eng/DbCondStrings.php b/h-source/Library/Lang/Eng/DbCondStrings.php index 1edae98..08b3e4d 100644 --- a/h-source/Library/Lang/Eng/DbCondStrings.php +++ b/h-source/Library/Lang/Eng/DbCondStrings.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Lang/Eng/ModelStrings.php b/h-source/Library/Lang/Eng/ModelStrings.php index 411d196..c424321 100644 --- a/h-source/Library/Lang/Eng/ModelStrings.php +++ b/h-source/Library/Lang/Eng/ModelStrings.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Lang/Eng/UploadStrings.php b/h-source/Library/Lang/Eng/UploadStrings.php index 195fd5f..6790d13 100644 --- a/h-source/Library/Lang/Eng/UploadStrings.php +++ b/h-source/Library/Lang/Eng/UploadStrings.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Lang/Eng/ValCondStrings.php b/h-source/Library/Lang/Eng/ValCondStrings.php index b9d132e..9094c42 100644 --- a/h-source/Library/Lang/Eng/ValCondStrings.php +++ b/h-source/Library/Lang/Eng/ValCondStrings.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Lang/ResultStrings.php b/h-source/Library/Lang/ResultStrings.php index db1095c..0c33bd4 100644 --- a/h-source/Library/Lang/ResultStrings.php +++ b/h-source/Library/Lang/ResultStrings.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/ModAbstract.php b/h-source/Library/ModAbstract.php index 885f64f..fa166d8 100644 --- a/h-source/Library/ModAbstract.php +++ b/h-source/Library/ModAbstract.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Model/Base.php b/h-source/Library/Model/Base.php index 1aaadca..4f2e783 100755 --- a/h-source/Library/Model/Base.php +++ b/h-source/Library/Model/Base.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); @@ -136,6 +151,18 @@ abstract class Model_Base $this->db = Factory_Db::getInstance(DATABASE_TYPE); } + //sanitize all the $values proprierty + public function sanitize() + { + $this->values = $this->arrayExt->subset($this->values,null,'sanitizeDb'); + } + + //change a resulting string from a db query + public function setString($key,$value) + { + $this->_resultString->string[$key] = $value; + } + //set the submitNames property (array) //$methodName : the method name, $submitName: the submit name of the submit action of the form public function setSubmitNames($methodName,$submitName) diff --git a/h-source/Library/Model/Map.php b/h-source/Library/Model/Map.php index 7a36c6f..4fe562d 100755 --- a/h-source/Library/Model/Map.php +++ b/h-source/Library/Model/Map.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Model/Tree.php b/h-source/Library/Model/Tree.php index d7b655d..4dcac8f 100755 --- a/h-source/Library/Model/Tree.php +++ b/h-source/Library/Model/Tree.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Params.php b/h-source/Library/Params.php index 9ec0ba5..1fc613b 100644 --- a/h-source/Library/Params.php +++ b/h-source/Library/Params.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Popup.php b/h-source/Library/Popup.php index 55ea7f5..f63a75d 100755 --- a/h-source/Library/Popup.php +++ b/h-source/Library/Popup.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Request.php b/h-source/Library/Request.php index 12bf16c..fb1688c 100644 --- a/h-source/Library/Request.php +++ b/h-source/Library/Request.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Scaffold.php b/h-source/Library/Scaffold.php index 2ac3fa5..7ee655d 100755 --- a/h-source/Library/Scaffold.php +++ b/h-source/Library/Scaffold.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Strings/Functions.php b/h-source/Library/Strings/Functions.php index eabc0d8..e2ad775 100644 --- a/h-source/Library/Strings/Functions.php +++ b/h-source/Library/Strings/Functions.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Theme.php b/h-source/Library/Theme.php index 692697e..0ed5317 100755 --- a/h-source/Library/Theme.php +++ b/h-source/Library/Theme.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Url.php b/h-source/Library/Url.php index 4e2ca5e..ef84215 100755 --- a/h-source/Library/Url.php +++ b/h-source/Library/Url.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); diff --git a/h-source/Library/Users/CheckAdmin.php b/h-source/Library/Users/CheckAdmin.php index 9a47b16..afc64c7 100755 --- a/h-source/Library/Users/CheckAdmin.php +++ b/h-source/Library/Users/CheckAdmin.php @@ -1,7 +1,22 @@ . if (!defined('EG')) die('Direct access not allowed!'); -- cgit v1.2.3