Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@25 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Dec 6, 2000
1 parent 622283e commit 15b61c3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
1 change: 0 additions & 1 deletion ChangeLog
Expand Up @@ -40,7 +40,6 @@ XX.XX.2000 - 0.10.2

* Fixed a link
* Fixed reporter not showing up properly
* Fixed
* The "enabled" flag on accounts works

12.01.2000 - 0.9.0
Expand Down
17 changes: 15 additions & 2 deletions INSTALL
@@ -1,5 +1,6 @@
-------------------------------------------------------------------------------
### Installation steps ###

-------------------------------------------------------------------------------
*** REQUIREMENTS: mysql database, php 3.0.7+, a webserver (tested on Apache,
should work with IIS or anything else php will run with).

Expand Down Expand Up @@ -42,7 +43,19 @@ of the site (including renaming the database tables) please read the
CONFIGURATION file. You'll probably want to add more bug catgories which
is covered in CONFIGURATION.

* Useful links:
-------------------------------------------------------------------------------
### Upgrading ###
-------------------------------------------------------------------------------
0.9.x to 0.10.x

You will need to add a 'protected' field in the mantis_user_table.
This command will do the trick:

ALTER TABLE mantis_user_table ADD protected VARCHAR (3) not null

-------------------------------------------------------------------------------
### Useful links ###
-------------------------------------------------------------------------------

http://www.mysql.com/ - good documentation.
http://www.php.net/ - excellent documentation.
Expand Down
4 changes: 3 additions & 1 deletion README
Expand Up @@ -17,9 +17,11 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-------------------------------------------------------------------------------

INSTALL - installation instructions
INSTALL - installation and upgrade instructions
CONFIGURATION - help on custom configuration
LICENSE - GPL license
Changlog - List of fixes, additions, and todo items
config_inc.php3 - global configuration options
db_generate.sql - SQL tables
core_API.php3 - core functions

Expand Down
2 changes: 2 additions & 0 deletions manage_user_update.php3
Expand Up @@ -23,6 +23,8 @@
protected='$f_protected'
WHERE id='$f_id'";
}
### administrator is not allowed to change access level or enabled
### this is to prevent screwing your own account
else {
$query = "UPDATE $g_mantis_user_table
SET username='$f_username', email='$f_email',
Expand Down

0 comments on commit 15b61c3

Please sign in to comment.