Skip to content

Commit

Permalink
3.20
Browse files Browse the repository at this point in the history
  • Loading branch information
bugfish\bugfishtm committed May 5, 2024
1 parent 26ec0c4 commit 39b65d9
Show file tree
Hide file tree
Showing 39 changed files with 48 additions and 36 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
![Bugfish](https://img.shields.io/badge/Bugfish-Framework-orange)
![Status](https://img.shields.io/badge/Status-Finished-green)
![License](https://img.shields.io/badge/License-GPLv3-black)
![Version](https://img.shields.io/badge/Version-3.10-white)
![Version](https://img.shields.io/badge/Version-3.20-white)

# Bugfish Framework Documentation

**Repository:** [Bugfish Framework on GitHub](https://github.com/bugfishtm/bugfish-framework)
**Documentation:** [Bugfish Framework Documentation](https://bugfishtm.github.io/bugfish-framework/)

![a](./_images/logo.jpg)
![a](./_images/bugfish-framework-banner.jpg)

**Comprehensive Documentation Available:** The Bugfish Framework project is proud to provide a detailed documentation that elucidates every function and class within the framework. This extensive documentation can be found at [bugfish-github.de](https://bugfishtm.github.io/bugfish-framework/) and offers invaluable insights into the operation of each component.

Expand Down Expand Up @@ -79,7 +79,7 @@ Explore an array of JavaScript functions designed for universal integration acro
If you want to support us, include this image somewhere in your project, that people can see this project has been created with help of this framework:


![a](./_images/banner.jpg)
![a](./_images/bugfish-framework-banner.jpg)


## Get Support
Expand Down
6 changes: 3 additions & 3 deletions _framework/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
![Bugfish](https://img.shields.io/badge/Bugfish-Framework-orange)
![Status](https://img.shields.io/badge/Status-Finished-green)
![License](https://img.shields.io/badge/License-GPLv3-black)
![Version](https://img.shields.io/badge/Version-3.10-white)
![Version](https://img.shields.io/badge/Version-3.20-white)

# Bugfish Framework Documentation

**Repository:** [Bugfish Framework on GitHub](https://github.com/bugfishtm/bugfish-framework)
**Documentation:** [Bugfish Framework Documentation](https://bugfishtm.github.io/bugfish-framework/)

![a](./logo.jpg)
![a](./bugfish-framework-banner.jpg)

**Comprehensive Documentation Available:** The Bugfish Framework project is proud to provide a detailed documentation that elucidates every function and class within the framework. This extensive documentation can be found at [bugfish-github.de](https://bugfishtm.github.io/bugfish-framework/) and offers invaluable insights into the operation of each component.

Expand Down Expand Up @@ -79,7 +79,7 @@ Explore an array of JavaScript functions designed for universal integration acro
If you want to support us, include this image somewhere in your project, that people can see this project has been created with help of this framework:


![a](./banner.jpg)
![a](./bugfish-framework-banner.jpg)


## Get Support
Expand Down
Binary file removed _framework/banner.jpg
Binary file not shown.
Binary file added _framework/bugfish-framework-banner.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
5 changes: 2 additions & 3 deletions _framework/classes/x_class_mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,7 @@ function __construct($host, $port = 25, $auth_type = false, $user = false, $pass
// Execute Mail Logging if Needed
private function log_execute($subject, $content, $receiver, $attachments, $cc, $bcc, $success, $debug_message, $settings) {
if($this->l_active) { if($success) { $success = 1; }
else { $success = 0; }
if($success AND $this->l_ok) { return false; }
else { $success = 0; } if($success AND !$this->l_ok) { return false; }
$b[0]["type"] = "s";
$b[0]["value"] = @serialize(@$receiver);
$b[1]["type"] = "s";
Expand Down Expand Up @@ -182,7 +181,7 @@ public function send($to, $toname, $title, $mailContent, $ishtml = false, $FOOTE
return true;
} else {
// Mail Sending Fail
$this->log_execute($title, $realcontent, $to, $attachments, array(), array(), true, $tmp_mailer->ErrorInfo, false);
$this->log_execute($title, $realcontent, $to, $attachments, array(), array(), false, $tmp_mailer->ErrorInfo, false);
$this->set_info($tmp_mailer->ErrorInfo);
unset($tmp_mailer);
return false;
Expand Down
14 changes: 13 additions & 1 deletion _framework/classes/x_class_user.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ public function login_field_mail() { $this->login_field = "user_mail"; $this->ma
public function mail_unique($bool = false) { $this->mail_unique = $bool; }
private $user_unique = false; // User dont have to be unique if not in reference
public function user_unique($bool = false) { $this->user_unique = $bool; }
private $spoof_check = false; // Enable IP Checking in Sessions for Hijacking Prevention?
public function ip_spoof_check($bool = true) { $this->spoof_check = $bool; }
## Logging Setup
private $log_ip=false; // Log IP Adresses?
public function log_ip($bool=false){$this->log_ip = $bool;}
Expand Down Expand Up @@ -533,7 +535,17 @@ public function logout() { @$this->session_logout(); @$this->cookie_unset();
public function init() {
if($this->login_field == "user_name") { $this->user_unique = true; }
if($this->login_field == "user_mail") { $this->mail_unique = true; }
if(@$_SESSION[$this->sessions."x_users_ip"] == @$_SERVER["REMOTE_ADDR"]
$internal_ip_check = $this->spoof_check;
if($internal_ip_check) {
if(@$_SESSION[$this->sessions."x_users_ip"] == @$_SERVER["REMOTE_ADDR"]) {
$internal_ip_check = true;
} else {
$internal_ip_check = false;
}
} else {
$internal_ip_check = true;
}
if($internal_ip_check
AND isset($_SESSION[$this->sessions."x_users_key"])
AND is_bool($_SESSION[$this->sessions."x_users_stay"])
AND is_numeric($_SESSION[$this->sessions."x_users_id"])) {
Expand Down
2 changes: 1 addition & 1 deletion _framework/classes/x_class_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ class x_class_version {
public $contact = "request@bugfish.eu";
public $website = "https://www.bugfish.eu";
public $github = "https://github.com/bugfishtm";
public $version = "3.10";
public $version = "3.20";
public $beta = false;
}
Binary file removed _images/banner.jpg
Binary file not shown.
Binary file modified _images/bugfish-framework-banner.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added _releases/3.20.zip
Binary file not shown.
3 changes: 2 additions & 1 deletion docs/assets/css/stylesheet.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified docs/bugfish-framework-banner.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/classes/x_class_api.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP API Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP API Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_benchmark.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Benchmark Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Benchmark Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_block.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Block Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Block Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_comment.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Comment Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Comment Class- Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_crypt.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Crypt Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Crypt Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_csrf.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP CSRF Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP CSRF Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_curl.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP CURL Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP CURL Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_debug.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Debug Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Debug Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_eventbox.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Eventbox Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Eventbox Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_hitcounter.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Hitcounter Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Hitcounter Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_ipbl.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Blacklist Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Blacklist Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_lang.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Lang Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Lang Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_log.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Log Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Log Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_mail.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Mail Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Mail Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_mail_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Mail Template Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Mail Template Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_mysql.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP MySQL Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP MySQL Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_perm.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Perm Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Perm Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_redis.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Redis Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Redis Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_referer.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Referer Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Referer Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Table Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Table Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_user.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP User Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP User Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_var.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP Var Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP Var Class - Bugfish Documentations"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/x_class_zip.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="../assets/js/jq.3.6.min.js"></script>
<script src="../assets/js/jquery.highlight.js"></script>
<script src="../assets/js/jquery.scrollto.js"></script>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-y:scroll;}</style>
<script src="../assets/js/jquery.finder.js"></script><style>.scrolldivy{max-width: 100%;overflow-x:scroll;}</style>
<!-- Descriptions -->
<title>PHP ZIP Class - Bugfish Documentations</title>
<meta property="og:title" content="PHP ZIP Class - Bugfish Documentations"/>
Expand Down
Loading

0 comments on commit 39b65d9

Please sign in to comment.