source: sipes/modules_contrib/chgpwd/chgpwd.install @ 6e81fb4

stableversion-3.0
Last change on this file since 6e81fb4 was 177a560, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio de modulos contribuidos de drupal

  • Propiedad mode establecida a 100755
File size: 513 octetos
Línea 
1<?php
2// $Id: chgpwd.install,v 1.1.2.2 2010/03/27 15:47:24 4vinoth Exp $
3
4
5function chgpwd_install() {
6  // up the weight, so that Any module that alters the form after our alterations will have their alterations shown.
7  db_query("UPDATE {system} set weight = 100 where name='chgpwd'");
8 
9}
10
11function chgpwd_update() {
12  // up the weight, so that Any module that alters the form after our alterations will have their alterations shown.
13  db_query("UPDATE {system} set weight = 100 where name='chgpwd'");
14 
15}
16
17
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.