Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ISPConfig 3
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guilherme Filippo
ISPConfig 3
Commits
55da9053
Commit
55da9053
authored
17 years ago
by
bpssoft
Browse files
Options
Downloads
Patches
Plain Diff
- Add comments to system.inc.php (PEAR) and cleanup wrong tabs
- Add some functionallity to MySQL class
parent
3eeed9bd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
TODO.txt
+0
-3
0 additions, 3 deletions
TODO.txt
interface/lib/classes/db_mysql.inc.php
+12
-1
12 additions, 1 deletion
interface/lib/classes/db_mysql.inc.php
server/lib/classes/system.inc.php
+1077
-964
1077 additions, 964 deletions
server/lib/classes/system.inc.php
with
1089 additions
and
968 deletions
TODO.txt
+
0
−
3
View file @
55da9053
...
...
@@ -73,6 +73,3 @@ General tasks
- Add, extend or modify comments in PEAR syntax so that they can be read with phpdocumentor.
- Add a function to prevent brute force password attacks to the login script. E.g. by
logging all login attempts and allowing only 5 logins every 15 minutes.
Task assigned to: BPSsoft
This diff is collapsed.
Click to expand it.
interface/lib/classes/db_mysql.inc.php
+
12
−
1
View file @
55da9053
...
...
@@ -217,10 +217,21 @@ class db
public
function
closeConn
()
{
if
(
$this
->
linkId
)
{
mysql_close
(
$this
->
linkId
);
return
true
;
}
else
{
return
false
;
}
}
public
function
freeResult
()
public
function
freeResult
(
$query
)
{
if
(
mysql_free_result
(
$query
))
{
return
true
;
}
else
{
return
false
;
}
}
public
function
delete
()
...
...
This diff is collapsed.
Click to expand it.
server/lib/classes/system.inc.php
+
1077
−
964
View file @
55da9053
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment